module ActiveSupport
Public Class Methods
eager_load!()
click to toggle source
Calls superclass method
# File lib/active_support.rb, line 78 def self.eager_load! super NumberHelper.eager_load! end
gem_version()
click to toggle source
Returns the version of the currently loaded Active Support as a
Gem::Version
.
# File lib/active_support/gem_version.rb, line 4 def self.gem_version Gem::Version.new VERSION::STRING end
to_time_preserves_timezone()
click to toggle source
# File lib/active_support.rb, line 86 def self.to_time_preserves_timezone DateAndTime::Compatibility.preserve_timezone end
to_time_preserves_timezone=(value)
click to toggle source
# File lib/active_support.rb, line 90 def self.to_time_preserves_timezone=(value) DateAndTime::Compatibility.preserve_timezone = value end
version()
click to toggle source
Returns the version of the currently loaded ActiveSupport as a Gem::Version
# File lib/active_support/version.rb, line 6 def self.version gem_version end