pluct 0.1.5 → 0.1.6
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 +4 -4
- data/lib/pluct/helpers/request.rb +3 -5
- data/lib/pluct/resource.rb +6 -5
- data/lib/pluct/version.rb +1 -1
- data/spec/integration/delete_spec.rb +31 -0
- data/spec/integration/patch_spec.rb +33 -0
- data/spec/integration/post_spec.rb +24 -0
- data/spec/integration/put_spec.rb +33 -0
- data/spec/integration/resource_spec.rb +4 -4
- data/spec/pluct/resource_spec.rb +8 -8
- data/spec/support/vcr/integration/delete.yml +464 -0
- data/spec/support/vcr/integration/patch.yml +520 -0
- data/spec/support/vcr/integration/post.yml +308 -0
- data/spec/support/vcr/integration/put.yml +520 -0
- metadata +19 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pluct
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alberto Leal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -175,6 +175,10 @@ files:
|
|
175
175
|
- pluct.gemspec
|
176
176
|
- spec/assets/user.json
|
177
177
|
- spec/assets/user_schema.json
|
178
|
+
- spec/integration/delete_spec.rb
|
179
|
+
- spec/integration/patch_spec.rb
|
180
|
+
- spec/integration/post_spec.rb
|
181
|
+
- spec/integration/put_spec.rb
|
178
182
|
- spec/integration/resource_spec.rb
|
179
183
|
- spec/pluct/extensions/json_spec.rb
|
180
184
|
- spec/pluct/helpers/request_spec.rb
|
@@ -184,9 +188,13 @@ files:
|
|
184
188
|
- spec/spec_helper.rb
|
185
189
|
- spec/support/vcr.rb
|
186
190
|
- spec/support/vcr/integration/creates_new_app.yml
|
191
|
+
- spec/support/vcr/integration/delete.yml
|
187
192
|
- spec/support/vcr/integration/expands_uri.yml
|
188
193
|
- spec/support/vcr/integration/instance_info.yml
|
189
194
|
- spec/support/vcr/integration/page_not_found.yml
|
195
|
+
- spec/support/vcr/integration/patch.yml
|
196
|
+
- spec/support/vcr/integration/post.yml
|
197
|
+
- spec/support/vcr/integration/put.yml
|
190
198
|
homepage: http://github.com/globocom/pluct-ruby
|
191
199
|
licenses:
|
192
200
|
- MIT
|
@@ -207,13 +215,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
215
|
version: '0'
|
208
216
|
requirements: []
|
209
217
|
rubyforge_project:
|
210
|
-
rubygems_version: 2.0.
|
218
|
+
rubygems_version: 2.0.6
|
211
219
|
signing_key:
|
212
220
|
specification_version: 4
|
213
221
|
summary: json-schema hypermedia client
|
214
222
|
test_files:
|
215
223
|
- spec/assets/user.json
|
216
224
|
- spec/assets/user_schema.json
|
225
|
+
- spec/integration/delete_spec.rb
|
226
|
+
- spec/integration/patch_spec.rb
|
227
|
+
- spec/integration/post_spec.rb
|
228
|
+
- spec/integration/put_spec.rb
|
217
229
|
- spec/integration/resource_spec.rb
|
218
230
|
- spec/pluct/extensions/json_spec.rb
|
219
231
|
- spec/pluct/helpers/request_spec.rb
|
@@ -223,6 +235,10 @@ test_files:
|
|
223
235
|
- spec/spec_helper.rb
|
224
236
|
- spec/support/vcr.rb
|
225
237
|
- spec/support/vcr/integration/creates_new_app.yml
|
238
|
+
- spec/support/vcr/integration/delete.yml
|
226
239
|
- spec/support/vcr/integration/expands_uri.yml
|
227
240
|
- spec/support/vcr/integration/instance_info.yml
|
228
241
|
- spec/support/vcr/integration/page_not_found.yml
|
242
|
+
- spec/support/vcr/integration/patch.yml
|
243
|
+
- spec/support/vcr/integration/post.yml
|
244
|
+
- spec/support/vcr/integration/put.yml
|