freeze(#:nodoc:)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/date/behavior.rb, line 28
            def freeze #:nodoc:
              self.class.private_instance_methods(false).each do |m|
                if m.to_s =~ /\A__\d+__\Z/
                  instance_variable_set("@#{m}""@#{m}", [send(m)])
                end
              end

              super
            end