aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/refinery')
-rw-r--r--app/models/refinery/blog/post.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/models/refinery/blog/post.rb b/app/models/refinery/blog/post.rb
index 522e000..ddfc3cc 100644
--- a/app/models/refinery/blog/post.rb
+++ b/app/models/refinery/blog/post.rb
@@ -63,16 +63,16 @@ module Refinery
end
class << self
- def by_archive(archive_date)
- where(['published_at between ? and ?', archive_date.beginning_of_month, archive_date.end_of_month])
+ def by_archive(date)
+ where(:published_at => date.beginning_of_month..date.end_of_month)
end
- def by_year(archive_year)
- where(['published_at between ? and ?', archive_year.beginning_of_year, archive_year.end_of_year])
+ def by_year(date)
+ where(:published_at => date.beginning_of_year..date.end_of_year)
end
- def all_previous
- where(['published_at <= ?', Time.now.beginning_of_month])
+ def published_dates_older_than(date)
+ where("published_at <= ?", date).map(&:published_at)
end
def live