diff options
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index b85cccc78e..96075d0d33 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,19 @@ *SVN* +* Merge the has_finder gem, renamed as 'named_scope'. #11404 [nkallen] + + class Article < ActiveRecord::Base + has_finder :published, :conditions => {:published => true} + has_finder :popular, :conditions => ... + end + + Article.published.paginate(:page => 1) + Article.published.popular.count + Article.popular.find(:first) + Article.popular.find(:all, :conditions => {...}) + + See http://pivots.pivotallabs.com/users/nick/blog/articles/284-hasfinder-it-s-now-easier-than-ever-to-create-complex-re-usable-sql-queries + * Add has_one :through support. #4756 [thechrisoshow] * Migrations: create_table supports primary_key_prefix_type. #10314 [student, thechrisoshow] |