Class: WhitePaper

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/white_paper.rb

Instance Method Summary collapse

Instance Method Details

#not_published?Boolean

has the published date not yet arrived?

Returns:

  • (Boolean)


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