diff options
Diffstat (limited to 'rails/test/dummy/config/application.rb')
-rw-r--r-- | rails/test/dummy/config/application.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rails/test/dummy/config/application.rb b/rails/test/dummy/config/application.rb new file mode 100644 index 0000000..ea22a5a --- /dev/null +++ b/rails/test/dummy/config/application.rb | |||
@@ -0,0 +1,25 @@ | |||
1 | require_relative "boot" | ||
2 | |||
3 | require "rails/all" | ||
4 | |||
5 | # Require the gems listed in Gemfile, including any gems | ||
6 | # you've limited to :test, :development, or :production. | ||
7 | Bundler.require(*Rails.groups) | ||
8 | require "lingo" | ||
9 | |||
10 | module Dummy | ||
11 | class Application < Rails::Application | ||
12 | config.load_defaults Rails::VERSION::STRING.to_f | ||
13 | |||
14 | # For compatibility with applications that use this config | ||
15 | config.action_controller.include_all_helpers = false | ||
16 | |||
17 | # Configuration for the application, engines, and railties goes here. | ||
18 | # | ||
19 | # These settings can be overridden in specific environments using the files | ||
20 | # in config/environments, which are processed later. | ||
21 | # | ||
22 | # config.time_zone = "Central Time (US & Canada)" | ||
23 | # config.eager_load_paths << Rails.root.join("extras") | ||
24 | end | ||
25 | end | ||