Sha256: dcd7ef2c7c74b6660e3b6e2560db4f065b038a4485792b53bdeb9f184a510cb5

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

require File.expand_path('../boot', __FILE__)

require 'rails/all'

Bundler.require(*Rails.groups)
require "before_actions"

module Dummy
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.

    # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
    # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
    # config.time_zone = 'Central Time (US & Canada)'

    # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
    # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
    # config.i18n.default_locale = :de

    # don't generate RSpec tests for views and helpers
    config.generators do |g|
      g.test_framework :rspec
      g.stylesheets = false
      g.javascripts = false
      g.helper = false
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
before_actions-2.0.3 spec/dummy/config/application.rb
before_actions-2.0.2 spec/dummy/config/application.rb
before_actions-2.0.1 spec/dummy/config/application.rb
before_actions-2.0.0 spec/dummy/config/application.rb
before_actions-1.0.3 spec/dummy/config/application.rb