Time::Zone
A very simple time-zone library which works by manipulating the TZ
environment variable.
Motivation
tzinfo
has an antiquated view of Time
. It returns local time values with a UTC time zone which is pretty much wrong.
Installation
Add this line to your application's Gemfile:
gem 'time-zone'
And then execute:
$ bundle
Or install it yourself as:
$ gem install time-zone
Usage
There are two basic use cases, getting the current time, and converting times.
Current Time
Time::Zone.now("Pacific/Auckland")
=> 2018-05-25 14:09:40 +1200
Convert Time
Time::Zone.convert(Time.now.utc, "Pacific/Auckland")
=> 2018-05-25 14:14:22 +1200
Multiple Operations
Time::Zone.with("US/Pacific") do
# Be aware that in some cases Time values are lazy initialized, so you need to use #localtime to force them to evaluate and use the current `TZ`.
time = Time.new.localtime
puts time.inspect
# => 2018-05-24 20:32:29 -0700
end
Caveats
This implementation manipulates the per-process TZ
environment variable. This means that if you don't put locking around all your usage of localtime
, you may end up with strange results (i.e. in a timezone other than the system specified TZ
). In the future, this requirement may go away.
This library is unlikely to work on Windows because it doesn't correctly handle changes to TZ
.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
Released under the MIT license.
Copyright, 2012, 2014, by Samuel G. D. Williams.
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.