Sha256: f1ed3cae7cfa4f57bb7a6ec5ad7ba6a248d150a9f061d871f974db686dc23558
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
class Reply < ActiveRecord::Base belongs_to :topic, :include => [:replies] named_scope :recent, where('replies.created_at > ?', 15.minutes.ago) named_scope :recent_two_wheres, where('replies.created_at > ?', 15.minutes.ago).where(:id => 5) named_scope :recent_limit_1, where('replies.created_at > ?', 15.minutes.ago).limit(1) named_scope :recent_with_content_like_ar, recent.where('lower(replies.content) like ?', "AR%") named_scope :recent_with_content_like_ar_and_id_4, recent.where('lower(replies.content) like ?', "AR%").where("id = 4") named_scope :recent_joins_topic, recent.joins(:topic) named_scope :topic_title_is, lambda {|topic_title| where("topics.title like ?", topic_title + "%") } named_scope :join_topic_and_author, joins(:topic => [:author]) named_scope :filter_join_topic_and_author, joins(:topic => [:author]).where('lower(replies.content) like ?','AR%') named_scope :arel_id, :conditions => "id = 1" named_scope :arel_id_with_lambda, lambda {|aid| arel_id} named_scope :arel_id_with_nested_lambda, lambda {|aid| arel_id_with_lambda(aid)} named_scope :id_asc, order('id asc') named_scope :id_desc, order('id desc') named_scope :topic_4_id_asc, id_asc.where(:topic_id => 4) named_scope :topic_4_id_desc, id_desc.where(:topic_id => 4) named_scope :topic_id, lambda{|topic_id| where(:topic_id => topic_id)} named_scope :recent_topic_id, lambda{|topic_id| recent.where(:topic_id => topic_id)} named_scope :topic__id_asc, lambda{|topic_id| id_asc.where(:topic_id => topic_id)} named_scope :topic__id_desc, lambda{|topic_id| id_desc.where(:topic_id => topic_id)} named_scope :topic_id_asc, order('topic_id asc') named_scope :topic_id_asc_id_desc, order('topic_id asc').id_desc named_scope :lam_topic_id_asc_id_desc, lambda{ topic_id_asc.id_desc } validates_presence_of :content def self.find_all_but_first with_scope(where('id > 1')) do self.all end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fake_arel-0.6 | spec/fixtures/reply.rb |