In Rails it's easy to set default time zone. I just need to add config.time_zone = 'Tokyo'
in config file.
How can I configure same way in pure ruby?
I mean "outside of Rails", of course it's OK to use some Gems like ActiveSupport
or something else.