simple_record 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/simple_record.rb +2 -3
- data/test/test_simple_record.rb +4 -0
- metadata +1 -1
data/lib/simple_record.rb
CHANGED
@@ -25,11 +25,10 @@
|
|
25
25
|
|
26
26
|
require 'right_aws'
|
27
27
|
require 'sdb/active_sdb'
|
28
|
-
require 'local_cache'
|
29
28
|
|
30
29
|
module SimpleRecord
|
31
30
|
|
32
|
-
VERSION = '1.0.
|
31
|
+
VERSION = '1.0.8'
|
33
32
|
|
34
33
|
class Base < RightAws::ActiveSdb::Base
|
35
34
|
|
@@ -409,7 +408,7 @@ module SimpleRecord
|
|
409
408
|
# puts @attributes.inspect
|
410
409
|
# puts @attributes[i.to_s].inspect
|
411
410
|
arr = @attributes[i.to_s]
|
412
|
-
puts 'padding date=' + i.to_s
|
411
|
+
#puts 'padding date=' + i.to_s
|
413
412
|
arr.collect!{ |x| self.class.pad_and_offset(x) }
|
414
413
|
@attributes[i.to_s] = arr
|
415
414
|
# puts 'after: ' + @attributes[i.to_s].inspect
|
data/test/test_simple_record.rb
CHANGED