diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-09-16 18:46:55 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-09-16 18:46:55 -0400 |
| commit | 5e62e771bf14f58dd1622d2e3631309caa201349 (patch) | |
| tree | 76143baae833a4cfe0e05cefb18b5a31d15b74e9 /test/dummy/config/application.rb | |
| download | pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.tar.gz pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.tar.bz2 pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.zip | |
Initial commit
Diffstat (limited to 'test/dummy/config/application.rb')
| -rw-r--r-- | test/dummy/config/application.rb | 18 |
1 files changed, 18 insertions, 0 deletions
| diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb new file mode 100644 index 0000000..9874f79 --- /dev/null +++ b/test/dummy/config/application.rb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | require_relative 'boot' | ||
| 2 | |||
| 3 | require 'rails/all' | ||
| 4 | |||
| 5 | Bundler.require(*Rails.groups) | ||
| 6 | require "pokeviewer" | ||
| 7 | |||
| 8 | module Dummy | ||
| 9 | class Application < Rails::Application | ||
| 10 | # Initialize configuration defaults for originally generated Rails version. | ||
| 11 | config.load_defaults 5.1 | ||
| 12 | |||
| 13 | # Settings in config/environments/* take precedence over those specified here. | ||
| 14 | # Application configuration should go into files in config/initializers | ||
| 15 | # -- all .rb files in that directory are automatically loaded. | ||
| 16 | end | ||
| 17 | end | ||
| 18 | |||
