Class: Time
- Inherits:
-
Object
- Object
- Time
- Defined in:
- lib/ext/time_ext.rb
Instance Method Summary collapse
Instance Method Details
#to_ntp ⇒ Object
2 3 4 5 6 |
# File 'lib/ext/time_ext.rb', line 2 def to_ntp # To convert Unix time to NTP time, add this. ntp_to_unix_time_diff = 2208988800 self.to_i + ntp_to_unix_time_diff end |