Method: ActiveSupport::TimeWithZone#to_f

Defined in:
lib/active_support/time_with_zone.rb

#to_fObject

Returns the object’s date and time as a floating-point number of seconds since the Epoch (January 1, 1970 00:00 UTC).

Time.zone.now.to_f # => 1417709320.285418


463
464
465
# File 'lib/active_support/time_with_zone.rb', line 463

def to_f
  utc.to_f
end