Sha256: d3cb9d866be37ab525213c8be6736f61e335e6567f27b86d8acdf0290c96dec0

Contents?: true

Size: 944 Bytes

Versions: 3

Compression:

Stored size: 944 Bytes

Contents

# frozen_string_literal: true
require_relative "boot"

require "active_record/railtie"
require "action_controller/railtie"

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

require "logster"

module Dummy
  class Application < Rails::Application
    config.load_defaults Rails::VERSION::STRING.to_f

    # For compatibility with applications that use this config
    config.action_controller.include_all_helpers = false

    config.eager_load = false

    # Configuration for the application, engines, and railties goes here.
    #
    # These settings can be overridden in specific environments using the files
    # in config/environments, which are processed later.
    #
    # config.time_zone = "Central Time (US & Canada)"
    # config.eager_load_paths << Rails.root.join("extras")
    Logster.set_environments([Rails.env.to_sym])
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
logster-2.20.0 test/dummy/config/application.rb
logster-2.19.1 test/dummy/config/application.rb
logster-2.19.0 test/dummy/config/application.rb