simple_record 1.1.60 → 1.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/simple_record/translations.rb +1 -1
- metadata +1 -1
@@ -44,7 +44,7 @@ module SimpleRecord
|
|
44
44
|
|
45
45
|
# Convert value from SimpleDB String version to real ruby value.
|
46
46
|
def sdb_to_ruby(name, value)
|
47
|
-
puts 'sdb_to_ruby arg=' + name.inspect + ' - ' + name.class.name + ' - value=' + value.to_s
|
47
|
+
# puts 'sdb_to_ruby arg=' + name.inspect + ' - ' + name.class.name + ' - value=' + value.to_s
|
48
48
|
return nil if value.nil?
|
49
49
|
att_meta = defined_attributes_local[name.to_sym]
|
50
50
|
|