Skip to content

Instantly share code, notes, and snippets.

@nguyent

nguyent/wat.rb Secret

Created March 25, 2015 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nguyent/8ca4b59573e9a3b5891b to your computer and use it in GitHub Desktop.
Save nguyent/8ca4b59573e9a3b5891b to your computer and use it in GitHub Desktop.
$ TZ=UTC bundle exec rails c
pry(main)> Java::java.lang.System.getenv['TZ']
=> "UTC"
pry(main)> ENV['TZ']
=> "UTC"
# VS
$ bundle exec rails c
pry(main)> Java::java.lang.System.getenv['TZ']
=> nil
pry(main)> ENV['TZ']
=> "UTC"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment