Sha256: 8ebe8891c346464e59350c0fee5ea8bbc7910bcc188a0422f56c2211fd1f32d8

Contents?: true

Size: 1006 Bytes

Versions: 215

Compression:

Stored size: 1006 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 the first freeze.
#
# 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
          unless frozen?
            self.class.private_instance_methods(false).each do |m|
              if m.to_s =~ /\A__\d+__\Z/
                instance_variable_set(:"@#{m}", [send(m)])
              end
            end
          end

          super
        end
      end
    end
  end
end

Version data entries

215 entries across 171 versions & 24 rubygems

Version Path
challah-0.5.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.4.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.4.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.5 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.4 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.3 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.2 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.3.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.2.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
challah-0.2.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb
activesupport-3.2.1 lib/active_support/core_ext/date/freeze.rb
activesupport-3.2.0 lib/active_support/core_ext/date/freeze.rb
activesupport-3.2.0.rc2 lib/active_support/core_ext/date/freeze.rb
activesupport-3.2.0.rc1 lib/active_support/core_ext/date/freeze.rb