Sha256: 34f10431f1b84dfeab6723e00f924ff7f90cabd79b3ebd114f985057bbb6d3fa

Contents?: true

Size: 1.36 KB

Versions: 57

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true
Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded on
  # every request. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports.
  config.consider_all_requests_local = true

  # Enable/disable caching. By default caching is disabled.
  if Rails.root.join('tmp/caching-dev.txt').exist?
    config.action_controller.perform_caching = true

    config.cache_store = :memory_store
    config.public_file_server.headers = {
      'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
    }
  else
    config.action_controller.perform_caching = false

    config.cache_store = :null_store
  end

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log


  # Raises error for missing translations
  # config.action_view.raise_on_missing_translations = true

  # Use an evented file watcher to asynchronously detect changes in source code,
  # routes, locales, etc. This feature depends on the listen gem.
  config.file_watcher = ActiveSupport::EventedFileUpdateChecker
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
graphql-1.8.18 spec/dummy/config/environments/development.rb
graphql-1.9.11 spec/dummy/config/environments/development.rb
graphql-1.9.10 spec/dummy/config/environments/development.rb
graphql-1.9.9 spec/dummy/config/environments/development.rb
graphql-1.9.8 spec/dummy/config/environments/development.rb
graphql-1.9.7 spec/dummy/config/environments/development.rb
graphql-1.9.6 spec/dummy/config/environments/development.rb
graphql-1.9.5 spec/dummy/config/environments/development.rb
graphql-1.9.4 spec/dummy/config/environments/development.rb
graphql-1.9.3 spec/dummy/config/environments/development.rb
graphql-1.9.2 spec/dummy/config/environments/development.rb
graphql-1.8.17 spec/dummy/config/environments/development.rb
graphql-1.8.16 spec/dummy/config/environments/development.rb
graphql-1.9.1 spec/dummy/config/environments/development.rb
graphql-1.9.0 spec/dummy/config/environments/development.rb
graphql-1.8.15 spec/dummy/config/environments/development.rb
graphql-1.9.0.pre4 spec/dummy/config/environments/development.rb
graphql-1.8.14 spec/dummy/config/environments/development.rb
graphql-1.9.0.pre3 spec/dummy/config/environments/development.rb
graphql-1.9.0.pre2 spec/dummy/config/environments/development.rb