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