Sha256: 74a9f2239fc3f157796220b5dc66fc7b91107c912a922defe9d030b0b391f56d

Contents?: true

Size: 1.31 KB

Versions: 164

Compression:

Stored size: 1.31 KB

Contents

require 'date'

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

164 entries across 131 versions & 20 rubygems

Version Path
activesupport-2.3.9 lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.9.pre lib/active_support/core_ext/date/behavior.rb
webroar-0.4.0 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
nbudin-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/date/behavior.rb
radiant-0.9.1 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.8 lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.8.pre1 lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.7 lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.6 lib/active_support/core_ext/date/behavior.rb
radiant-0.8.2 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
radiant-0.9.0.rc2 vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
webroar-0.3.1 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
webroar-0.3.0 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
usher-0.7.0 spec/rails2_3/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
usher-0.7.0 spec/rails2_3/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.3.3/lib/active_support/core_ext/date/behavior.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.2.2/lib/active_support/core_ext/date/behavior.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb
activesupport-2.3.6.pre lib/active_support/core_ext/date/behavior.rb
simply_stated-0.0.5 vendor/gems/ruby/1.8/gems/activesupport-2.3.5/lib/active_support/core_ext/date/behavior.rb
simply_stated-0.0.4 vendor/gems/ruby/1.8/gems/activesupport-2.3.5/lib/active_support/core_ext/date/behavior.rb