A website template with lots of features, built with ruby on rails.

blog_post.rb 276B

123456789
  1. class BlogPost < ActiveRecord::Base
  2. extend FriendlyId
  3. friendly_id :title, use: :slugged
  4. validates_presence_of :title, :slug
  5. belongs_to :author, :class_name => "User"
  6. mount_uploader :image, CoverUploader
  7. process_in_background :image
  8. store_in_background :image
  9. end