Method: Date#blank?
- Defined in:
- activesupport/lib/active_support/core_ext/date/blank.rb
#blank? ⇒ false
No Date is blank:
Date.today.blank? # => false
11 12 13 |
# File 'activesupport/lib/active_support/core_ext/date/blank.rb', line 11 def blank? false end |