pod4 0.9.1 → 0.9.2
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.
- checksums.yaml +5 -5
- data/.hgtags +1 -0
- data/lib/pod4/nebulous_interface.rb +1 -1
- data/lib/pod4/version.rb +1 -1
- data/spec/common/nebulous_interface_spec.rb +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c3e03af8f6faa0007bcc7e510c3ab0d1df965796
|
4
|
+
data.tar.gz: a4a03e266622a1578f8c1051c1aa99de036a84c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88894872f737e42c9a7530c83879887b508c45cc8442b9d3db37634f472465bc65de7c9cd75ba1ce02e29eb0d1f243d2075647b193a83962a004fac570dcbf19
|
7
|
+
data.tar.gz: fa641eae8d2c3bbf5b4d45e9887fb3ffa3858466ff697f5ef75f3f6323dc9c3ecb975a4edd8ba34e064eb1c3faf30a8817256afe30d8928fd1d46b965f6604a7
|
data/.hgtags
CHANGED
data/lib/pod4/version.rb
CHANGED
@@ -305,15 +305,16 @@ describe "NebulousInterface" do
|
|
305
305
|
let(:id) { interface.list.first[:id] }
|
306
306
|
|
307
307
|
it 'updates the record at ID with record parameter' do
|
308
|
-
rec =
|
308
|
+
rec = Octothorpe.new(price: 98.23)
|
309
309
|
interface.update(id, rec)
|
310
310
|
|
311
|
-
|
311
|
+
x = interface.read(id)
|
312
|
+
expect( x.>>.price ).to eq 98.23
|
312
313
|
end
|
313
314
|
|
314
315
|
it 'creates a non-caching request' do
|
315
316
|
i = id # creates a request, so get it done now
|
316
|
-
rec =
|
317
|
+
rec = Octothorpe.new(price: 99.99)
|
317
318
|
|
318
319
|
FakeRequester.clear_method
|
319
320
|
interface.update(i, rec)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pod4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Jones
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
version: '0'
|
120
120
|
requirements: []
|
121
121
|
rubyforge_project:
|
122
|
-
rubygems_version: 2.
|
122
|
+
rubygems_version: 2.5.1
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Totally not an ORM
|