Class: Time

Inherits:
Object show all
Defined in:
lib/errgonomic/core_ext/blank.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#blank?false

No Time is blank:

Time.now.blank? # => false

Returns:

  • (false)


192
193
194
# File 'lib/errgonomic/core_ext/blank.rb', line 192

def blank?
  false
end

#present?Boolean

Returns:

  • (Boolean)


196
197
198
# File 'lib/errgonomic/core_ext/blank.rb', line 196

def present?
  true
end