bjeanes (owner)

Revisions

gist: 119786 Download_button fork
public
Public Clone URL: git://gist.github.com/119786.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
# Log to STDOUT if in Rails
if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER')
  require 'logger'
  RAILS_DEFAULT_LOGGER = Logger.new(STDOUT)
end