teamlab 0.3.7 → 0.3.7.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: e138bee3a83a7c61ef94df7eed087bb45a446b72
4
- data.tar.gz: ec90423f7b805433afeca0e26948d6415c953603
3
+ metadata.gz: bd00a038987b96d35a5c23e31305b6bbf217a9c9
4
+ data.tar.gz: eb77435697ef7d7518a7eb69d05f44e56ca882bf
5
5
  SHA512:
6
- metadata.gz: db40165470d2acd1148d52aee9050213ce0dfaa7d3659363394a7bf83663ae6bb00f9949ad253a67630b3350d9a99b620cd3dbfbfe269c28a53f065bf44e1a16
7
- data.tar.gz: 64cd079f25a14f695762d5d1121ee9107c621e01fb55afac0d486839cb1dc06556acc5991f6bf082f156a16ffa5e4f1df2e0c645f168c05eaae56e1e28ff3719
6
+ metadata.gz: de3b4a3896f5c3f2135662fbeb69866a310648e3ae9cf7ecdf72174133cab42a5fac704474abd6ed34a0889da8e954bd22a161b849f1ddc5d83f14e1ff291fec
7
+ data.tar.gz: 94615a07769b4999175424869ac682236550465f7c1c7704fe244e51d71bbcbab201825a07fe368ea1d5af04e0cc62686d3ce73aa0bd8c8af3c0a06dd075a043
data/Changelog.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.3.7.1
2
+ =====
3
+
4
+ * Fix typo in identifying that portal is warming up
5
+
1
6
  0.3.7
2
7
  =====
3
8
 
@@ -8,7 +8,7 @@ module Teamlab
8
8
  @code = http_response.code
9
9
  @success = @code < 400
10
10
  fail 'Error 404' if @code == 404
11
- fail TimeoutError, 'Portal is warming up' unless http_response.parsed_response.include?('portal is being warmed')
11
+ fail TimeoutError, 'Portal is warming up' if http_response.parsed_response.include?('portal is being warmed')
12
12
  @body = http_response.respond_to?(:parsed_response) && http_response.parsed_response.key?('result') ? http_response.parsed_response['result'] : http_response.to_hash
13
13
  @error = @body['error']['message'] if @body.key?('error') && @body['error'].key?('message')
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module Teamlab
2
- VERSION = '0.3.7'
2
+ VERSION = '0.3.7.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teamlab
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - rzagudaev
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-05-29 00:00:00.000000000 Z
13
+ date: 2015-06-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: httparty