Ruby by Example / Environment Variables
Environment variables are a universal mechanism for conveying configuration information to Unix programs.
secret = ENV["SECRET"]
puts "SECRET not set" if secret
puts secret
$ SECRET=12345 ruby envtest.rb
12345