diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
commit | 5581530930129d7854ed5d99d058939ad9c790c2 (patch) | |
tree | 157515f64b34a86e0f6d33dc641e06a7ecc2982c /config/application.rb | |
download | thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.gz thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.bz2 thoughts-5581530930129d7854ed5d99d058939ad9c790c2.zip |
Initial commit
Diffstat (limited to 'config/application.rb')
-rw-r--r-- | config/application.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..485c3a3 --- /dev/null +++ b/config/application.rb | |||
@@ -0,0 +1,18 @@ | |||
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 Thoughts | ||
10 | class Application < Rails::Application | ||
11 | # Initialize configuration defaults for originally generated Rails version. | ||
12 | config.load_defaults 5.1 | ||
13 | |||
14 | # Settings in config/environments/* take precedence over those specified here. | ||
15 | # Application configuration should go into files in config/initializers | ||
16 | # -- all .rb files in that directory are automatically loaded. | ||
17 | end | ||
18 | end | ||