Class: WhitePaper
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- WhitePaper
- Defined in:
- app/models/white_paper.rb
Instance Method Summary collapse
-
#not_published? ⇒ Boolean
has the published date not yet arrived?.
Instance Method Details
#not_published? ⇒ Boolean
has the published date not yet arrived?
11 12 13 |
# File 'app/models/white_paper.rb', line 11 def not_published? # has the published date not yet arrived? publish_date > Time.now end |