rainforest-client 0.0.10 → 0.0.10.1
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/README.md +7 -2
- data/lib/rainforest/client/version.rb +1 -1
- data/rainforest-client.gemspec +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 705d0ef98a6e3de299c7d3100abc2e68273cec2c
|
|
4
|
+
data.tar.gz: cf54129016a8d5221d026a621bd756748e8f6241
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a83afb4c276cbb67621fc057cee6500f193c873bea717025be32a61624a7e51864482dd9d0e88f92291d7f2c5c28094c2545fbf4a5804925bbf6b24c6e94327
|
|
7
|
+
data.tar.gz: c2585ab2c739e88a84de289861394aa7368ddcf41a365dae5b547e241a7498b059cc77a669f044f8130855fe4be17b8468505288b3254463cf93aab5467a6e72
|
data/README.md
CHANGED
|
@@ -41,10 +41,15 @@ You can access end-point directly, via request method and receive JSON data back
|
|
|
41
41
|
|
|
42
42
|
# Get a particular resource
|
|
43
43
|
|
|
44
|
-
runs = api.request('runs/2286',
|
|
44
|
+
runs = api.request('runs/2286', {}, :get)
|
|
45
45
|
puts runs
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
# Delete a run
|
|
48
|
+
|
|
49
|
+
runs = api.request('runs/2286', {run: 2286}, :delete)
|
|
50
|
+
puts runs
|
|
51
|
+
|
|
52
|
+
### Or via object/resource wrapper (In development. Checkout dev branch)
|
|
48
53
|
|
|
49
54
|
runs = Rainforest::Runs.new
|
|
50
55
|
puts runs.retrieve
|
data/rainforest-client.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = "rainforest-client"
|
|
8
8
|
spec.version = Rainforest::Client::VERSION
|
|
9
9
|
spec.authors = ["Simon Mathieu", "Russell Smith", "kureikain"]
|
|
10
|
-
spec.email = ["simon@rainforestqa.com", "russ@rainforestqa.com"]
|
|
11
|
-
spec.description = %q{API Client for RainforestQA}
|
|
10
|
+
spec.email = ["simon@rainforestqa.com", "russ@rainforestqa.com", 'kurei@axcoto.com']
|
|
11
|
+
spec.description = %q{API Client for RainforestQA. Info at: https://github.com/kureikain/rainforest-gem}
|
|
12
12
|
spec.summary = %q{API Client for RainforestQA}
|
|
13
13
|
spec.homepage = "https://www.rainforestqa.com/"
|
|
14
14
|
spec.license = "MIT"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rainforest-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.10
|
|
4
|
+
version: 0.0.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Mathieu
|
|
@@ -54,10 +54,11 @@ dependencies:
|
|
|
54
54
|
- - '>='
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: '0'
|
|
57
|
-
description: API Client for RainforestQA
|
|
57
|
+
description: 'API Client for RainforestQA. Info at: https://github.com/kureikain/rainforest-gem'
|
|
58
58
|
email:
|
|
59
59
|
- simon@rainforestqa.com
|
|
60
60
|
- russ@rainforestqa.com
|
|
61
|
+
- kurei@axcoto.com
|
|
61
62
|
executables: []
|
|
62
63
|
extensions: []
|
|
63
64
|
extra_rdoc_files: []
|