Sha256: 697ce4f1d37de53915a510d480870fe9d218217f04164f818396ac4586f82134

Contents?: true

Size: 738 Bytes

Versions: 1

Compression:

Stored size: 738 Bytes

Contents

require_relative 'boot'

require_relative "../lib/app"

require 'rails/all'

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module DemoApp
  class Application < Rails::Application
    # Initialize configuration defaults for originally generated Rails version.
    config.load_defaults 6.0

    config.paths.add "lib/app", eager_load: true
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration can go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded after loading
    # the framework and any gems in your application.
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blog_app-0.0.1 config/application.rb