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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 028662a3144ea5e6358cf09aa95bf695b34bbd7a
4
- data.tar.gz: 75563451bd917491cdb3c2266940335011a2dd5b
3
+ metadata.gz: c35477a7a236472b0e8688d4e1707917b6233219
4
+ data.tar.gz: 24870c6344ce4b5b2e1626d0ca0100e299ec7d17
5
5
  SHA512:
6
- metadata.gz: d0174b927e6e39b06a9b2d7f4302a75cc38ef4c9b5d4055900496c210d42c65ace37ddd98886f98ed9b3f38d31a3623e041f6e8f0bc9471b07ac36f18f7b0178
7
- data.tar.gz: 0d47b24bb194e2eb04f140ddcad0599e9a00e418c9969fbfddf1f3eeb8378dcfe530cd868c614cbcfee1b7a10dd16c8c27fdbfb9be288372ed0393011e4d77b0
6
+ metadata.gz: 9af9cf21a3aac55d6ad3cc6b2641be65173db39eb1a14653fcb88035f25cca66d4d62c3ddbb96fa1fe89e298f82c2d814d671ec0a2b1e078bc980de9c0ffe96a
7
+ data.tar.gz: 4ed4f07f440648c707c74b401def3d86dc74071bbcce163b6c7098792426a27120f816df8690d611635eb94a990b4393f62fc1cf15bf7375e02a8ae35ec414bf
@@ -41,3 +41,4 @@ branches:
41
41
  - master
42
42
  - 4.0.x
43
43
  - 4.1.x
44
+ - 4.2.x
@@ -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
+
@@ -1,5 +1,5 @@
1
1
  module Occi
2
2
  module Api
3
- VERSION = "4.2.0.beta.17" unless defined?(::Occi::Api::VERSION)
3
+ VERSION = "4.2.0" unless defined?(::Occi::Api::VERSION)
4
4
  end
5
5
  end
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.beta.17
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: 1.3.1
219
+ version: '0'
219
220
  requirements: []
220
221
  rubyforge_project:
221
222
  rubygems_version: 2.1.11