webrat/lib/merb_support/support.rb

13 lines
187 B
Ruby
Raw Normal View History

2008-04-18 15:40:24 +00:00
class Hash
def with_indifferent_access
hash = HashWithIndifferentAccess.new(self)
hash.default = self.default
hash
end
end
class NilClass
def to_param
nil
end
end