Project

unix_epoch

0.0
No commit activity in last 3 years
No release in over 3 years
Adds from_unix_ts and to_unix_ts methods to the DateTime class
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.3.24
 Project Readme

unix_epoch¶ ↑

DESCRIPTION:¶ ↑

Ruby library that adds the following methods to the DateTime class for handling Unix timestamps.

* from_unix_ts(unix_ts, offset)
* to_unix_ts()
* to_i()

One advantage of using this library over Time.at() is the correct handling of very large dates (> 2038) on 32-bit systems.

DOCUMENTATION:¶ ↑

Documentation is available online at at rdoc.info

SYNOPSIS:¶ ↑

require "unix_epoch"
dt = DateTime.from_unix_ts(1301103992)
dt.to_i == 1301103992

INSTALL:¶ ↑

sudo gem install unix_epoch

FURTHER READING:¶ ↑

Here’s some good information on various Calendar systems:

And the Perl library from which I borrowed some ideas:

LICENSE:¶ ↑

(The MIT License)

Copyright © 2011 Pixelcop Research, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.