Sha256: 99bfd815e9c453f2f120f97db8faf9be136b8281db9cb2fdc5e01a31786fc327
Contents?: true
Size: 345 Bytes
Versions: 8
Compression:
Stored size: 345 Bytes
Contents
class BlogCategory < ActiveRecord::Base has_many :categorizations has_many :posts, :through => :categorizations, :source => :blog_post acts_as_indexed :fields => [:title] validates :title, :presence => true, :uniqueness => true has_friendly_id :title, :use_slug => true def post_count posts.select(&:live?).count end end
Version data entries
8 entries across 8 versions & 1 rubygems