webrat/lib/merb_support/support.rb
2008-04-18 16:40:24 +01:00

13 lines
187 B
Ruby

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