apply sho's patch: default values may be lambdas

This commit is contained in:
Chris Anderson 2009-01-12 20:45:07 -08:00
commit 5e7f61d332
2 changed files with 6 additions and 1 deletions

View file

@ -510,6 +510,11 @@ module CouchRest
if self.class.default
self.class.default.each do |k,v|
self[k] = v unless self.key?(k.to_s)
if v.class == Proc
self[k.to_s] = v.call
else
self[k.to_s] = Marshal.load(Marshal.dump(v))
end
end
end
end