rainforest 2.0.1 → 2.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 323f66cb060449d71da91978b6d230aa147c4c44
4
- data.tar.gz: 2062c37a004e17b71178eb1d107836f27337d38b
3
+ metadata.gz: 9ff880af55737e73dd34ebd53e50d92ba2a17680
4
+ data.tar.gz: d4a67dc05b30dc186135bef91a63c1f3d2e905ea
5
5
  SHA512:
6
- metadata.gz: 36e09e0d6ba219dbe40369174c00527848a875c2a6981dad5c9e98a701a0f4ed113622bd3b2059b895c568e8d79ebdb9e8a350298b50798b07c438cac20c5e87
7
- data.tar.gz: d321a3b56e23c3f372a028836b6d0b887be0ea9dd55ec6c272cc028435853e46f6da2dfe1700f563e8135a1dd4aa2624500b4c2be0d3b14906b90b61e34c7b9c
6
+ metadata.gz: 43042295baee688e83b2cdbfe79c787779a4318e72250c23465eb15dc90342dbb93b5ae2ea5225e8730c5839a7a7798083f40bcc76ef4b494be701a40ac7edbc
7
+ data.tar.gz: 8595a86b90cae3eae3774c0fe079140c38e3984835e89ce82c0391fc835c40418796498253dd3d0db9dc8f864456b0cdd4a7c206578f0337d915261aecc110cd
data/README.md CHANGED
@@ -15,12 +15,12 @@ If you want to build & install the gem from source:
15
15
 
16
16
  ```bash
17
17
  gem build rainforest.gemspec
18
- gem install rainforest-2.0.1.gem
18
+ gem install rainforest-2.0.2.gem
19
19
  ```
20
20
 
21
21
  ## Documentation
22
22
 
23
- Full documentation is available at [https://docs.rainfroestqa.com](https://docs.rainfroestqa.com).
23
+ Full documentation is available at [https://docs.rainforestqa.com](https://docs.rainforestqa.com).
24
24
 
25
25
 
26
26
  ## Requirements
@@ -51,7 +51,7 @@ gem 'rainforest'
51
51
 
52
52
  ## Using the library
53
53
 
54
- The following section covers some general info about this API library. If you are looking for documentation covering the entire API, check here: [https://docs.rainfroestqa.com](https://docs.rainfroestqa.com).
54
+ The following section covers some general info about this API library. If you are looking for documentation covering the entire API, check here: [https://docs.rainforestqa.com](https://docs.rainforestqa.com).
55
55
 
56
56
  ### Params and Headers
57
57
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.1
1
+ 2.0.2
data/lib/rainforest.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # Rainforest Ruby bindings
2
- # API Docs are located at https://docs.rainfroestqa.com
2
+ # API Docs are located at https://docs.rainforestqa.com
3
3
  require 'cgi'
4
4
  require 'set'
5
5
  require 'openssl'
@@ -69,7 +69,7 @@ module Rainforest
69
69
  @api_staging = "https://app.rnfrst.com/api/1/"
70
70
  @api_version = "v1"
71
71
  @support_email = "help@rainforestqa.com"
72
- @docs_url = "https://docs.rainfroestqa.com"
72
+ @docs_url = "https://docs.rainforestqa.com"
73
73
 
74
74
  class << self
75
75
  attr_accessor :api_base, :api_version
@@ -8,7 +8,7 @@ module Rainforest
8
8
  def refresh_from(api_key)
9
9
  headers = {
10
10
  :Accept => "application/json",
11
- :"Content-Type" => "application/x-www-form-urlencoded",
11
+ :"Content-Type" => "application/json",
12
12
  :CLIENT_TOKEN => api_key,
13
13
  }
14
14
  params = {}
@@ -26,7 +26,7 @@ module Rainforest
26
26
  }, params)
27
27
  method = ApiMethod.new(:delete, "/tests/:test_id", params, headers, @parent)
28
28
  json = @client.execute(method)
29
- Test.new(json, method)
29
+ json
30
30
  end
31
31
 
32
32
  def update(test_id, params={}, headers={})
data/rainforest.gemspec CHANGED
@@ -6,7 +6,7 @@ spec = Gem::Specification.new do |s|
6
6
  s.name = 'rainforest'
7
7
  s.summary = 'Ruby bindings for Rainforest API'
8
8
  s.description = 'Rainforest automates your functional and integration testing with our QA-as-a-Service API.'
9
- s.homepage = 'https://docs.rainfroestqa.com'
9
+ s.homepage = 'https://docs.rainforestqa.com'
10
10
  s.authors = ['Apibits.com']
11
11
  s.email = ['libraries@apibits.com']
12
12
  s.version = Rainforest::VERSION
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rainforest
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apibits.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-03 00:00:00.000000000 Z
11
+ date: 2015-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -186,7 +186,7 @@ files:
186
186
  - test/rainforest/util_test.rb
187
187
  - test/test_data.rb
188
188
  - test/test_helper.rb
189
- homepage: https://docs.rainfroestqa.com
189
+ homepage: https://docs.rainforestqa.com
190
190
  licenses:
191
191
  - MIT
192
192
  metadata: {}