vsphere-automation-runtime 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +6 -6
- data/README.md +1 -1
- data/lib/vsphere-automation-runtime/api_client.rb +1 -0
- data/lib/vsphere-automation-runtime/configuration.rb +1 -1
- data/lib/vsphere-automation-runtime/version.rb +1 -1
- data/pkg/vsphere-automation-runtime-0.4.3.gem +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8648ffa1c05b3725ad75630c04135d295d4b7cb5297b30143d3ba8bdd09ca36
|
4
|
+
data.tar.gz: 2f5d4b1511549f5175e15ea87717df9543d407c1d33d296d2a3b9158994414e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01eb7380314cd7dc4d2efb5992203dd8f6295d136a38d08a8f3c558932b67aeacc3e7400525a439f4787ebc3d3cb9c22da7940cdb1f31ef9f90b63b934c149b0
|
7
|
+
data.tar.gz: 210545975a6ec7e1ecafb0510ee5a00d5e155a8a7c3984998f62c44d9bcba55ceb0d1531bc5a3dada40e2d1433d00a44ac37bbafb92b7b9256c656f8c0096dde
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
vsphere-automation-runtime (0.4.
|
4
|
+
vsphere-automation-runtime (0.4.4)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -17,7 +17,7 @@ GEM
|
|
17
17
|
jaro_winkler (1.5.3)
|
18
18
|
method_source (0.9.2)
|
19
19
|
parallel (1.17.0)
|
20
|
-
parser (2.6.
|
20
|
+
parser (2.6.5.0)
|
21
21
|
ast (~> 2.4.0)
|
22
22
|
pry (0.12.2)
|
23
23
|
coderay (~> 1.1.0)
|
@@ -31,13 +31,13 @@ GEM
|
|
31
31
|
rspec-mocks (~> 3.8.0)
|
32
32
|
rspec-core (3.8.2)
|
33
33
|
rspec-support (~> 3.8.0)
|
34
|
-
rspec-expectations (3.8.
|
34
|
+
rspec-expectations (3.8.5)
|
35
35
|
diff-lcs (>= 1.2.0, < 2.0)
|
36
36
|
rspec-support (~> 3.8.0)
|
37
|
-
rspec-mocks (3.8.
|
37
|
+
rspec-mocks (3.8.2)
|
38
38
|
diff-lcs (>= 1.2.0, < 2.0)
|
39
39
|
rspec-support (~> 3.8.0)
|
40
|
-
rspec-support (3.8.
|
40
|
+
rspec-support (3.8.3)
|
41
41
|
rubocop (0.73.0)
|
42
42
|
jaro_winkler (~> 1.5.1)
|
43
43
|
parallel (~> 1.10)
|
@@ -49,7 +49,7 @@ GEM
|
|
49
49
|
safe_yaml (1.0.5)
|
50
50
|
unicode-display_width (1.6.0)
|
51
51
|
vcr (5.0.0)
|
52
|
-
webmock (3.7.
|
52
|
+
webmock (3.7.6)
|
53
53
|
addressable (>= 2.3.6)
|
54
54
|
crack (>= 0.3.2)
|
55
55
|
hashdiff (>= 0.4.0, < 2.0.0)
|
data/README.md
CHANGED
@@ -153,6 +153,7 @@ module VSphereAutomation
|
|
153
153
|
http = Net::HTTP.new(uri.host, uri.port)
|
154
154
|
http.use_ssl = @config.scheme == 'https'
|
155
155
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE unless @config.verify_ssl_host
|
156
|
+
http.read_timeout = @config.timeout
|
156
157
|
http
|
157
158
|
end
|
158
159
|
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vsphere-automation-runtime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- J.R. Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- lib/vsphere-automation-runtime/version.rb
|
156
156
|
- pkg/vsphere-automation-runtime-0.4.1.gem
|
157
157
|
- pkg/vsphere-automation-runtime-0.4.2.gem
|
158
|
+
- pkg/vsphere-automation-runtime-0.4.3.gem
|
158
159
|
- spec/api_client_spec.rb
|
159
160
|
- spec/configuration_spec.rb
|
160
161
|
- spec/spec_helper.rb
|