Sha256: 5e3bd3a09bddf142c87f139cde3efc11100fafd2e894f8559909545098bdb821

Contents?: true

Size: 1.29 KB

Versions: 20

Compression:

Stored size: 1.29 KB

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Date #:nodoc:
      module Behavior
        # Enable more predictable duck-typing on Date-like classes. See
        # Object#acts_like?.
        def acts_like_date?
          true
        end

        # 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:
        begin
          ::Date.today.freeze.jd
        rescue => frozen_object_error
          if frozen_object_error.message =~ /frozen/
            def freeze #:nodoc:
              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
  end
end

Version data entries

20 entries across 20 versions & 5 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
radiant-0.7.2 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
activesupport-2.1.2 lib/active_support/core_ext/date/behavior.rb
activesupport-2.1.1 lib/active_support/core_ext/date/behavior.rb
radiant-0.7.0 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
radiant-0.7.1 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb