Sha256: c15980fb7353a51f914fda2854b4ce89964d24039ed1c5158dd445013337d722

Contents?: true

Size: 1.19 KB

Versions: 5

Compression:

Stored size: 1.19 KB

Contents

# Be sure to restart your server when you modify this file.
#
# This file contains migration options to ease your Rails 5.0 upgrade.
#
# Read the Rails 5.0 release notes for more info on each option.

if Rails.gem_version >= Gem::Version.new('5')

  # Enable per-form CSRF tokens. Previous versions had false.
  Rails.application.config.action_controller.per_form_csrf_tokens = true

  # Enable origin-checking CSRF mitigation. Previous versions had false.
  Rails.application.config.action_controller.forgery_protection_origin_check = true

  # Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
  # Previous versions had false.
  ActiveSupport.to_time_preserves_timezone = true

  # Require `belongs_to` associations by default. Previous versions had false.
  Rails.application.config.active_record.belongs_to_required_by_default = true

  # Do not halt callback chains when a callback returns false. Previous versions had true.
  unless Rails.version == '5.1.0'
    ActiveSupport.halt_callback_chains_on_return_false = false
  end

  # Configure SSL options to enable HSTS with subdomains. Previous versions had false.
  Rails.application.config.ssl_options = { hsts: { subdomains: true } }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pagelet_rails-0.2.2 test/dummy/config/initializers/new_framework_defaults.rb
pagelet_rails-0.2.1 test/dummy/config/initializers/new_framework_defaults.rb
pagelet_rails-0.2.0 test/dummy/config/initializers/new_framework_defaults.rb
pagelet_rails-0.1.8 test/dummy/config/initializers/new_framework_defaults.rb
pagelet_rails-0.1.7 test/dummy/config/initializers/new_framework_defaults.rb