Sha256: f79f41d7577b6aeed7d27e27e8818af75f283748c4ce9fba89563875080b8c46
Contents?: true
Size: 789 Bytes
Versions: 7
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true require_relative 'boot' require 'rails/all' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) require 'cookbook' module Dummy # Our dummy application class Application < Rails::Application config.load_defaults Rails::VERSION::STRING.to_f # 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") config.generators do |g| g.test_framework :rspec end end end
Version data entries
7 entries across 7 versions & 1 rubygems