Sha256: ed44ce7025743a362a2fd18c955098e7ac7015bc3ac31bb1ecd57b301c10d910

Contents?: true

Size: 1003 Bytes

Versions: 10

Compression:

Stored size: 1003 Bytes

Contents

# frozen_string_literal: true

require_relative 'boot'

# Pick the frameworks you want:
require 'active_record/railtie'
require 'action_controller/railtie'
require 'action_view/railtie'
require 'action_mailer/railtie'
require 'active_job/railtie'
require 'action_cable/engine'
# require "rails/test_unit/railtie"
require 'sprockets/railtie'

Bundler.require(*Rails.groups)
require 'bootstrap_leather'

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.

    config.generators do |g|
      g.orm             :active_record
      g.template_engine :erb
      g.test_framework  :rspec, fixture: false
      g.stylesheets     false
      g.javascripts     false
    end

    config.time_zone = 'America/Denver'
    config.active_record.default_timezone = :local
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bootstrap_leather-0.10.14 spec/dummy/config/application.rb
bootstrap_leather-0.10.13 spec/dummy/config/application.rb
bootstrap_leather-0.10.11 spec/dummy/config/application.rb
bootstrap_leather-0.10.10 spec/dummy/config/application.rb
bootstrap_leather-0.10.9 spec/dummy/config/application.rb
bootstrap_leather-0.10.8 spec/dummy/config/application.rb
bootstrap_leather-0.10.7 spec/dummy/config/application.rb
bootstrap_leather-0.10.6 spec/dummy/config/application.rb
bootstrap_leather-0.10.5 spec/dummy/config/application.rb
bootstrap_leather-0.10.4 spec/dummy/config/application.rb