rforce 0.9 → 0.10
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/History.txt +5 -0
- data/lib/rforce/soap_pullable.rb +0 -1
- data/lib/rforce/soap_response_hpricot.rb +0 -1
- data/lib/rforce/soap_response_nokogiri.rb +0 -2
- data/lib/rforce/version.rb +1 -1
- data/spec/rforce_spec.rb +2 -2
- metadata +2 -2
data/History.txt
CHANGED
data/lib/rforce/soap_pullable.rb
CHANGED
data/lib/rforce/version.rb
CHANGED
data/spec/rforce_spec.rb
CHANGED
@@ -159,7 +159,7 @@ shared_examples_for 'a SOAP response' do
|
|
159
159
|
klass.new(xml).parse.should == {:foo => {:Id => "some_id"}}
|
160
160
|
end
|
161
161
|
|
162
|
-
it 'parses booleans
|
162
|
+
it 'parses booleans' do
|
163
163
|
xml = wrap_in_salesforce_envelope("""
|
164
164
|
<foo>
|
165
165
|
<size>20</size>
|
@@ -168,7 +168,7 @@ shared_examples_for 'a SOAP response' do
|
|
168
168
|
<string>normal string</string>
|
169
169
|
</foo>""")
|
170
170
|
|
171
|
-
klass.new(xml).parse.should == {:foo => {:size => 20, :done => true, :more => false, :string => "normal string"}}
|
171
|
+
klass.new(xml).parse.should == {:foo => {:size => "20", :done => true, :more => false, :string => "normal string"}}
|
172
172
|
end
|
173
173
|
|
174
174
|
it 'disregards namespacing when determining hash keys' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rforce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.10'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-09-
|
12
|
+
date: 2012-09-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: builder
|