diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
commit | 0929719a845897cc8567cf972e07a69a71f0fa6f (patch) | |
tree | 2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /test/dummy/config/application.rb | |
parent | 01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff) | |
download | wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2 wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip |
Migrate to a full rails app
Diffstat (limited to 'test/dummy/config/application.rb')
-rw-r--r-- | test/dummy/config/application.rb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb deleted file mode 100644 index 67cc140..0000000 --- a/test/dummy/config/application.rb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
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 | ||