diff options
Diffstat (limited to 'test/dummy/config/application.rb')
-rw-r--r-- | test/dummy/config/application.rb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb new file mode 100644 index 0000000..67cc140 --- /dev/null +++ b/test/dummy/config/application.rb | |||
@@ -0,0 +1,29 @@ | |||
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 | |||
9 | module Dummy | ||
10 | class Application < Rails::Application | ||
11 | config.load_defaults Rails::VERSION::STRING.to_f | ||
12 | |||
13 | # For compatibility with applications that use this config | ||
14 | config.action_controller.include_all_helpers = false | ||
15 | |||
16 | # Please, add to the `ignore` list any other `lib` subdirectories that do | ||
17 | # not contain `.rb` files, or that should not be reloaded or eager loaded. | ||
18 | # Common ones are `templates`, `generators`, or `middleware`, for example. | ||
19 | config.autoload_lib(ignore: %w(assets tasks)) | ||
20 | |||
21 | # Configuration for the application, engines, and railties goes here. | ||
22 | # | ||
23 | # These settings can be overridden in specific environments using the files | ||
24 | # in config/environments, which are processed later. | ||
25 | # | ||
26 | # config.time_zone = "Central Time (US & Canada)" | ||
27 | # config.eager_load_paths << Rails.root.join("extras") | ||
28 | end | ||
29 | end | ||