Sha256: 1d0b853e13f9d799b28b0d7b9bd8b2eee6e90c224f37bd107839ca4477475cf5

Contents?: true

Size: 1.18 KB

Versions: 48

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

# This is private interface.
#
# Rails components cherry pick from Active Support as needed, but there are a
# few features that are used for sure in some way or another and it is not worth
# putting individual requires absolutely everywhere. Think blank? for example.
#
# This file is loaded by every Rails component except Active Support itself,
# but it does not belong to the Rails public interface. It is internal to
# Rails and can change anytime.

# Defines Object#blank? and Object#present?.
require "active_support/core_ext/object/blank"

# Rails own autoload, eager_load, etc.
require "active_support/dependencies/autoload"

# Support for ClassMethods and the included macro.
require "active_support/concern"

# Defines Class#class_attribute.
require "active_support/core_ext/class/attribute"

# Defines Module#delegate.
require "active_support/core_ext/module/delegation"

# Defines ActiveSupport::Deprecation.
require "active_support/deprecation"

# Defines Regexp#match?.
#
# This should be removed when Rails needs Ruby 2.4 or later, and the require
# added where other Regexp extensions are being used (easy to grep).
require "active_support/core_ext/regexp"

Version data entries

48 entries across 48 versions & 7 rubygems

Version Path
activesupport-5.2.1 lib/active_support/rails.rb
activesupport-5.2.1.rc1 lib/active_support/rails.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/activesupport-5.2.0/lib/active_support/rails.rb
activesupport-5.2.0 lib/active_support/rails.rb
activesupport-5.2.0.rc2 lib/active_support/rails.rb
activesupport-5.2.0.rc1 lib/active_support/rails.rb
activesupport-5.2.0.beta2 lib/active_support/rails.rb
activesupport-5.2.0.beta1 lib/active_support/rails.rb