Class: DateTime

Inherits:
Object
  • Object
show all
Defined in:
lib/when_sun.rb

Instance Method Summary collapse

Instance Method Details

#to_timeObject



134
135
136
137
138
139
140
141
# File 'lib/when_sun.rb', line 134

def to_time
  d = new_offset(0)
  d.instance_eval do
    Time.utc(year, mon, mday, hour, min, sec,
             (sec_fraction * 86400000000).to_i)
  end.
      getlocal
end