1 # Display to the console the contents of the README file.
\r
2 puts IO.read(File.join(File.dirname(__FILE__), 'README'))
\r
4 # Append the contents of api_keys_template to the application's environment.rb file
\r
5 environment_rb = File.open(File.expand_path(File.join(File.dirname(__FILE__), '../../../config/environment.rb')), "a")
\r
6 environment_rb.puts IO.read(File.join(File.dirname(__FILE__), '/assets/api_keys_template'))
\r