Class: NewsItem
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- NewsItem
- Defined in:
- app/models/news_item.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#not_published? ⇒ Boolean
has the published date not yet arrived?.
Class Method Details
.per_page ⇒ Object
20 21 22 |
# File 'app/models/news_item.rb', line 20 def self.per_page 20 end |
Instance Method Details
#not_published? ⇒ Boolean
has the published date not yet arrived?
16 17 18 |
# File 'app/models/news_item.rb', line 16 def not_published? # has the published date not yet arrived? publish_date > Time.now end |