aws 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sdb/right_sdb_interface.rb +2 -1
- metadata +3 -3
@@ -170,7 +170,8 @@ module Aws
|
|
170
170
|
# Non-nil values are unaffected by this filter.
|
171
171
|
def ruby_to_sdb(value)
|
172
172
|
# puts "value #{value} is frozen? #{value.frozen?}"
|
173
|
-
value.nil? ? @nil_rep : ((value.frozen? || !value.is_a?(String)) ? value : value.force_encoding("UTF-8"))
|
173
|
+
# value.nil? ? @nil_rep : ((value.frozen? || !value.is_a?(String)) ? value : value.force_encoding("UTF-8"))
|
174
|
+
value.nil? ? @nil_rep : value
|
174
175
|
end
|
175
176
|
|
176
177
|
# Convert a SDB value to a Ruby language value by replacing the user's chosen string representation of nil with Ruby nil.
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 2
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 2.3.
|
8
|
+
- 1
|
9
|
+
version: 2.3.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Travis Reeder
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-03-
|
19
|
+
date: 2010-03-23 00:00:00 -07:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|