Sha256: 075cab1d9cd1eb02980d1791bdbae9d5bb833fd25e7e1763e5baf4cd62303f46

Contents?: true

Size: 604 Bytes

Versions: 9

Compression:

Stored size: 604 Bytes

Contents

# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)

require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])

require 'action_controller/railtie'
require 'rails/test_unit/railtie'

Bundler.require(:default, Rails.env)

module Rails3
  class Application < Rails::Application
    config.encoding = 'utf-8'

    logger = Logger.new($stdout)
    logger.level = Logger::INFO
    config.logger = logger if $DEBUG

    # Configure sensitive parameters which will be filtered from the log file.
    config.filter_parameters += [:password]
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rest-more-3.4.0 example/rails3/config/application.rb
rest-more-3.3.4 example/rails3/config/application.rb
rest-more-3.3.3 example/rails3/config/application.rb
rest-more-3.3.2 example/rails3/config/application.rb
rest-more-3.3.1 example/rails3/config/application.rb
rest-more-3.3.0 example/rails3/config/application.rb
rest-more-3.2.0 example/rails3/config/application.rb
rest-more-3.1.0 example/rails3/config/application.rb
rest-more-3.0.0 example/rails3/config/application.rb