mirror of
https://github.com/meineerde/dotfiles.git
synced 2025-10-17 19:41:01 +00:00
8 lines
207 B
Ruby
8 lines
207 B
Ruby
require 'rubygems'
|
|
|
|
# Rails will log to irb
|
|
require 'logger'
|
|
if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER')
|
|
Object.const_set('RAILS_DEFAULT_LOGGER', Logger.new(STDOUT))
|
|
end
|