From 1f615ce5686dac03ce57e4e4116bd98d5e0822ba Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Tue, 23 Nov 2010 02:55:29 +0100 Subject: [PATCH] Removing wierd marshalling thing --- lib/couchrest/model/property.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/couchrest/model/property.rb b/lib/couchrest/model/property.rb index abefaab..d1aec7b 100644 --- a/lib/couchrest/model/property.rb +++ b/lib/couchrest/model/property.rb @@ -58,7 +58,8 @@ module CouchRest::Model if default.class == Proc default.call else - Marshal.load(Marshal.dump(default)) + # Marshal.load(Marshal.dump(default)) # Removed as there are no failing tests and caused mutex errors + default end end