tddium_client 0.1.1 → 0.1.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.
- data/Gemfile.lock +17 -16
- data/lib/tddium_client.rb +1 -1
- data/lib/tddium_client/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
tddium_client (0.1.
|
|
4
|
+
tddium_client (0.1.2)
|
|
5
5
|
httparty
|
|
6
6
|
json
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: http://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
diff-lcs (1.1.
|
|
12
|
-
fakefs (0.
|
|
11
|
+
diff-lcs (1.1.3)
|
|
12
|
+
fakefs (0.4.0)
|
|
13
13
|
fakeweb (1.3.0)
|
|
14
14
|
httparty (0.8.1)
|
|
15
15
|
multi_json
|
|
@@ -17,21 +17,22 @@ GEM
|
|
|
17
17
|
json (1.6.1)
|
|
18
18
|
multi_json (1.0.3)
|
|
19
19
|
multi_xml (0.4.1)
|
|
20
|
-
rack (1.
|
|
21
|
-
rack-test (0.
|
|
20
|
+
rack (1.3.5)
|
|
21
|
+
rack-test (0.6.1)
|
|
22
22
|
rack (>= 1.0)
|
|
23
|
-
rake (0.
|
|
24
|
-
rspec (2.
|
|
25
|
-
rspec-core (~> 2.
|
|
26
|
-
rspec-expectations (~> 2.
|
|
27
|
-
rspec-mocks (~> 2.
|
|
28
|
-
rspec-core (2.
|
|
29
|
-
rspec-expectations (2.
|
|
23
|
+
rake (0.9.2.2)
|
|
24
|
+
rspec (2.7.0)
|
|
25
|
+
rspec-core (~> 2.7.0)
|
|
26
|
+
rspec-expectations (~> 2.7.0)
|
|
27
|
+
rspec-mocks (~> 2.7.0)
|
|
28
|
+
rspec-core (2.7.1)
|
|
29
|
+
rspec-expectations (2.7.0)
|
|
30
30
|
diff-lcs (~> 1.1.2)
|
|
31
|
-
rspec-mocks (2.
|
|
32
|
-
simplecov (0.
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
rspec-mocks (2.7.0)
|
|
32
|
+
simplecov (0.5.3)
|
|
33
|
+
multi_json (~> 1.0.3)
|
|
34
|
+
simplecov-html (~> 0.5.3)
|
|
35
|
+
simplecov-html (0.5.3)
|
|
35
36
|
|
|
36
37
|
PLATFORMS
|
|
37
38
|
ruby
|
data/lib/tddium_client.rb
CHANGED
|
@@ -120,7 +120,7 @@ module TddiumClient
|
|
|
120
120
|
|
|
121
121
|
begin
|
|
122
122
|
http = HTTParty.send(method, tddium_uri(api_path), :body => params, :headers => headers)
|
|
123
|
-
rescue Timeout::Error, OpenSSL::SSL::SSLError, OpenSSL::SSL::Session::SessionError
|
|
123
|
+
rescue Errno::ETIMEDOUT, Timeout::Error, OpenSSL::SSL::SSLError, OpenSSL::SSL::Session::SessionError
|
|
124
124
|
tries += 1
|
|
125
125
|
retry if retries > 0 && tries <= retries
|
|
126
126
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: tddium_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Jay Moorthi
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-11-04 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: httparty
|