Merge commit 'mattetti/master'

This commit is contained in:
Peter Gumeson 2009-06-20 21:05:00 -07:00
commit ce02d05eac
2 changed files with 6 additions and 1 deletions

View file

@ -24,7 +24,7 @@ module CouchRest
self.class.properties.each do |property|
key = property.name.to_s
# let's make sure we have a default
if property.default
unless property.default.nil?
if property.default.class == Proc
self[key] = property.default.call
else