Sha256: 2c326f43c5559f8bd0b73bbcf627b22f270ec0a6f7f02b60d6f24af2ac88b6df
Contents?: true
Size: 646 Bytes
Versions: 9
Compression:
Stored size: 646 Bytes
Contents
require File.expand_path('../boot', __FILE__) require "rails/all" Bundler.require :default module RailsApp class Application < Rails::Application # Ensure the root is correct config.root = File.expand_path('../../', __FILE__) # Configure generators values. Many other options are available, be sure to check the documentation. # config.generators do |g| # g.orm :active_record # g.template_engine :erb # g.test_framework :test_unit, :fixture => true # end # 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 & 2 rubygems