You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
702 B

1 year ago
  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 Blog
  7. class Application < Rails::Application
  8. # Initialize configuration defaults for originally generated Rails version.
  9. config.load_defaults 7.0
  10. # Configuration for the application, engines, and railties goes here.
  11. #
  12. # These settings can be overridden in specific environments using the files
  13. # in config/environments, which are processed later.
  14. #
  15. # config.time_zone = "Central Time (US & Canada)"
  16. # config.eager_load_paths << Rails.root.join("extras")
  17. end
  18. end