Sha256: c59233601415a9f976a4c869e589e908aebae0214b476376109c1a9048d9fa88

Contents?: true

Size: 719 Bytes

Versions: 3

Compression:

Stored size: 719 Bytes

Contents

# 
#  rails_assistant.rb
#  RailsAssistant.App 
#
#  Copyright (c) 2012 Nocturnal Code Limited. All rights reserved.
#
#  This file is automatically generated
#  Any manual edits to this file could be overwritten
#  Settings can be altered from Rails Assistant itself


# only run this code when your app is run from Rails Assistant
if ENV['com.nocturnalcode.RailsAssistant']
    
	# disable buffered output, we want this realtime!
	STDOUT.sync = true
	STDERR.sync = true
    
    # better log formatting, we can parse this nice and easy
	class Logger::SimpleFormatter
        def call(severity, time, progname, msg)
            "\x1D[#{time.strftime("%F %T.%L %z")}] #{severity} #{msg}\x1E\n"
        end
    end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_assistant-1.0.2 spec/dummy/config/initializers/rails_assistant.rb
rails_assistant-1.0.1 spec/dummy/config/initializers/rails_assistant.rb
rails_assistant-1.0.0 spec/dummy/config/initializers/rails_assistant.rb