simple_record 1.1.51 → 1.1.52
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.rb +3 -3
- metadata +1 -1
data/lib/simple_record.rb
CHANGED
@@ -540,12 +540,12 @@ module SimpleRecord
|
|
540
540
|
end
|
541
541
|
attvalue = strip_array(attvalue)
|
542
542
|
make_dirty(attname, attvalue)
|
543
|
-
puts "ARG=#{attname.to_s} setting to #{attvalue}"
|
543
|
+
# puts "ARG=#{attname.to_s} setting to #{attvalue}"
|
544
544
|
sdb_val = ruby_to_sdb(name, attvalue)
|
545
|
-
puts "sdb_val=" + sdb_val.to_s
|
545
|
+
# puts "sdb_val=" + sdb_val.to_s
|
546
546
|
@attributes[attname] = sdb_val
|
547
547
|
attvalue = wrap_if_required(name, attvalue, sdb_val)
|
548
|
-
puts 'attvalue2=' + attvalue.to_s
|
548
|
+
# puts 'attvalue2=' + attvalue.to_s
|
549
549
|
@attributes_rb[attname] = attvalue
|
550
550
|
|
551
551
|
# instance_var = "@" + attname.to_s
|