occi-api 4.2.0.beta.17 → 4.2.0
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/.travis.yml +1 -0
- data/lib/occi/api/client/http/monkey_patches/net_fix.rb +17 -0
- data/lib/occi/api/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c35477a7a236472b0e8688d4e1707917b6233219
|
|
4
|
+
data.tar.gz: 24870c6344ce4b5b2e1626d0ca0100e299ec7d17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9af9cf21a3aac55d6ad3cc6b2641be65173db39eb1a14653fcb88035f25cca66d4d62c3ddbb96fa1fe89e298f82c2d814d671ec0a2b1e078bc980de9c0ffe96a
|
|
7
|
+
data.tar.gz: 4ed4f07f440648c707c74b401def3d86dc74071bbcce163b6c7098792426a27120f816df8690d611635eb94a990b4393f62fc1cf15bf7375e02a8ae35ec414bf
|
data/.travis.yml
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
##############################################################################
|
|
2
|
+
## Net hack hiding differences between Ruby 1.9.3 and Ruby 2+. Shouldn't have
|
|
3
|
+
## any side effects.
|
|
4
|
+
##############################################################################
|
|
5
|
+
|
|
6
|
+
module Net
|
|
7
|
+
##
|
|
8
|
+
# OpenTimeout, a subclass of Timeout::Error, is raised if a connection cannot
|
|
9
|
+
# be created within the open_timeout.
|
|
10
|
+
class OpenTimeout < Timeout::Error; end
|
|
11
|
+
|
|
12
|
+
##
|
|
13
|
+
# ReadTimeout, a subclass of Timeout::Error, is raised if a chunk of the
|
|
14
|
+
# response cannot be read within the read_timeout.
|
|
15
|
+
class ReadTimeout < Timeout::Error; end
|
|
16
|
+
end
|
|
17
|
+
|
data/lib/occi/api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: occi-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.2.0
|
|
4
|
+
version: 4.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Feldhaus
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- lib/occi/api/client/http/helpers.rb
|
|
106
106
|
- lib/occi/api/client/http/monkey_patches.rb
|
|
107
107
|
- lib/occi/api/client/http/monkey_patches/httparty_fix.rb
|
|
108
|
+
- lib/occi/api/client/http/monkey_patches/net_fix.rb
|
|
108
109
|
- lib/occi/api/client/http/monkey_patches/net_http_fix.rb
|
|
109
110
|
- lib/occi/api/client/http/party_wrappers.rb
|
|
110
111
|
- lib/occi/api/dsl.rb
|
|
@@ -213,9 +214,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
213
214
|
version: 1.9.3
|
|
214
215
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
216
|
requirements:
|
|
216
|
-
- - '
|
|
217
|
+
- - '>='
|
|
217
218
|
- !ruby/object:Gem::Version
|
|
218
|
-
version:
|
|
219
|
+
version: '0'
|
|
219
220
|
requirements: []
|
|
220
221
|
rubyforge_project:
|
|
221
222
|
rubygems_version: 2.1.11
|