Class: Date

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

Instance Method Summary collapse

Instance Method Details

#to_utc_timeTime

Returns:



3
4
5
6
7
8
9
# File 'lib/gb_date/date.rb', line 3

def to_utc_time
  begin
    self.to_time(:utc)
  rescue
    self.to_time + self.to_time.utc_offset
  end
end