Sha256: c1085271e87cf362f6782846f2b4dbebaed8100532420b81e84a125305497955

Contents?: true

Size: 949 Bytes

Versions: 110

Compression:

Stored size: 949 Bytes

Contents

# Date memoizes some instance methods using metaprogramming to wrap
# the methods with one that caches the result in an instance variable.
#
# If a Date is frozen but the memoized method hasn't been called, the
# first call will result in a frozen object error since the memo
# instance variable is uninitialized.
#
# Work around by eagerly memoizing before freezing.
#
# Ruby 1.9 uses a preinitialized instance variable so it's unaffected.
# This hack is as close as we can get to feature detection:
if RUBY_VERSION < '1.9'
  require 'date'
  begin
    ::Date.today.freeze.jd
  rescue => frozen_object_error
    if frozen_object_error.message =~ /frozen/
      class Date #:nodoc:
        def freeze
          self.class.private_instance_methods(false).each do |m|
            if m.to_s =~ /\A__\d+__\Z/
              instance_variable_set(:"@#{m}", [send(m)])
            end
          end

          super
        end
      end
    end
  end
end

Version data entries

110 entries across 110 versions & 6 rubygems

Version Path
csd-0.1.2 lib/active_support/core_ext/date/freeze.rb
csd-0.1.1 lib/active_support/core_ext/date/freeze.rb
csd-0.1.0 lib/active_support/core_ext/date/freeze.rb
csd-0.0.16 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.0.beta4 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.0.beta3 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.0.beta2 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.0.beta lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.pre lib/active_support/core_ext/date/freeze.rb
recliner-0.0.1 vendor/activesupport/lib/active_support/core_ext/date/freeze.rb