application.rb 694 B

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