about summary refs log tree commit diff stats
path: root/test/dummy/config/application.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-27 23:51:23 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-27 23:51:23 -0400
commitd09db2d6d0727faba8e5078900f2fbd1e18ea49f (patch)
tree978edaa0c321477d3c04f515cd13da0051a5459f /test/dummy/config/application.rb
parent75a7c7131f6c9a6d80d16055130609eb97f37dfd (diff)
downloadwittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.tar.gz
wittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.tar.bz2
wittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.zip
it's an engine now!
Diffstat (limited to 'test/dummy/config/application.rb')
-rw-r--r--test/dummy/config/application.rb29
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 @@
1require_relative "boot"
2
3require "rails/all"
4
5# Require the gems listed in Gemfile, including any gems
6# you've limited to :test, :development, or :production.
7Bundler.require(*Rails.groups)
8
9module 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
29end