diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 09:29:30 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 09:29:30 -0500 |
commit | 0380a97230023a78ad08b738c4520e901485ed63 (patch) | |
tree | 2f3b4e91453962fd5bb36cf652c808cb7f41c3a7 /rails/test/dummy/config/application.rb | |
parent | 6af7b09fa551c6cc980bb54fefd1db88c904654f (diff) | |
download | lingo-0380a97230023a78ad08b738c4520e901485ed63.tar.gz lingo-0380a97230023a78ad08b738c4520e901485ed63.tar.bz2 lingo-0380a97230023a78ad08b738c4520e901485ed63.zip |
Added Rails engine for scoreboard
refs #13
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 | ||