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
social_url_stats-0.0.1 vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.12 lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.11 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.20 lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.10 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.19 lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.9 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.18 lib/active_support/core_ext/date/freeze.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
dirty_history-0.6.4 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.8 lib/active_support/core_ext/date/freeze.rb
activesupport-3.0.17 lib/active_support/core_ext/date/freeze.rb
dirty_history-0.6.3 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb
activesupport-3.1.7 lib/active_support/core_ext/date/freeze.rb