application.rb 656 B

12345678910111213141516171819
  1. require_relative 'boot'
  2. require 'rails/all'
  3. # Require the gems listed in Gemfile, including any gems
  4. # you've limited to :test, :development, or :production.
  5. Bundler.require(*Rails.groups)
  6. module Depot
  7. class Application < Rails::Application
  8. # Initialize configuration defaults for originally generated Rails version.
  9. config.load_defaults 5.2
  10. # Settings in config/environments/* take precedence over those specified here.
  11. # Application configuration can go into files in config/initializers
  12. # -- all .rb files in that directory are automatically loaded after loading
  13. # the framework and any gems in your application.
  14. end
  15. end