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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67f3f0495908c60093c5dcd1df844643a51d064a
4
- data.tar.gz: 6e2d86568a94f96bf25dfcf85acefe5b6dd40f25
3
+ metadata.gz: 705d0ef98a6e3de299c7d3100abc2e68273cec2c
4
+ data.tar.gz: cf54129016a8d5221d026a621bd756748e8f6241
5
5
  SHA512:
6
- metadata.gz: 8fd7080807a7dd2a5656d3031f106bbecb36edf547141b0fbe8d595a6ebc39cbcf778704290fb9e23f8c9813aae692fe43310ad5ca2a29595b1fe3917289ee81
7
- data.tar.gz: bb592ed884c0b1f4c645f46c2a140ece3af78d0f7905569542840c7e952035741a521220f14afe3dfea9c7b4e0183791fcd88dad5cf375b63777f7166c470358
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', nil, :get)
44
+ runs = api.request('runs/2286', {}, :get)
45
45
  puts runs
46
46
 
47
- ### Or via object/resource wrapper
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
@@ -1,5 +1,5 @@
1
1
  module Rainforest
2
2
  class Client
3
- VERSION = "0.0.10"
3
+ VERSION = "0.0.10.1"
4
4
  end
5
5
  end
@@ -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: []