nexus 0.2.3 → 0.2.4
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/lib/commands/abstract_command.rb +3 -5
- metadata +2 -2
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
require 'rubygems/local_remote_options'
|
|
2
|
-
begin
|
|
3
|
-
require 'always_verify_ssl_certificates'
|
|
4
|
-
rescue LoadError
|
|
5
|
-
warn 'skip "always_verify_ssl_certificates"'
|
|
6
|
-
end
|
|
7
2
|
require 'base64'
|
|
8
3
|
|
|
9
4
|
class Gem::AbstractCommand < Gem::Command
|
|
@@ -92,6 +87,9 @@ class Gem::AbstractCommand < Gem::Command
|
|
|
92
87
|
if url.scheme == 'https'
|
|
93
88
|
http.use_ssl = true
|
|
94
89
|
end
|
|
90
|
+
|
|
91
|
+
#Because sometimes our gems are huge and our people are on vpns
|
|
92
|
+
http.read_timeout = 300
|
|
95
93
|
|
|
96
94
|
request_method =
|
|
97
95
|
case method
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: nexus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.2.
|
|
5
|
+
version: 0.2.4
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Nick Quaranto
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-06-09 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake
|