Class: Fog::Time
- Inherits:
-
Time
- Object
- Time
- Fog::Time
- Defined in:
- lib/fog/core/time.rb
Constant Summary collapse
- DAYS =
['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
- MONTHS =
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.now ⇒ Object
7 8 9 |
# File 'lib/fog/core/time.rb', line 7 def self.now at((::Time.now - offset).to_i) end |
.now=(new_now) ⇒ Object
11 12 13 14 15 |
# File 'lib/fog/core/time.rb', line 11 def self.now=(new_now) old_now = ::Time.now @offset = old_now - new_now new_now end |
.offset ⇒ Object
17 18 19 |
# File 'lib/fog/core/time.rb', line 17 def self.offset @offset ||= 0 end |
Instance Method Details
#to_date_header ⇒ Object
21 22 23 |
# File 'lib/fog/core/time.rb', line 21 def to_date_header self.utc.strftime("#{DAYS[self.utc.wday]}, %d #{MONTHS[self.utc.month - 1]} %Y %H:%M:%S +0000") end |
#to_iso8601_basic ⇒ Object
25 26 27 |
# File 'lib/fog/core/time.rb', line 25 def to_iso8601_basic self.utc.strftime('%Y%m%dT%H%M%SZ') end |