deploygate 0.8.1 → 0.8.2
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 +5 -5
- data/config/locales/en.yml +2 -0
- data/lib/deploygate.rb +1 -0
- data/lib/deploygate/api/v1/base.rb +5 -1
- data/lib/deploygate/command_builder.rb +2 -0
- data/lib/deploygate/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 152c8d51b8026027e006abf851587d585ea1e9db
|
4
|
+
data.tar.gz: a2ecbe04a60241e3bace5f4a71ca21cb2b720d68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3753c438e061fe68140654852dc2dab3de06e69647f5b4771f6159fd448232c6735b36520f6334f38a21b0cfb62ef8d711173f906d896a5165afe6cc5a8c23f
|
7
|
+
data.tar.gz: 0275cdfea85a1c763406aaf0650c37e30e01c3d1311037f52fa297896b7d248842bf41c1de26dd413118c78237c8a075951fd2f904b6d990474a6f1589d6a587
|
data/config/locales/en.yml
CHANGED
data/lib/deploygate.rb
CHANGED
@@ -45,7 +45,11 @@ module DeployGate
|
|
45
45
|
private
|
46
46
|
|
47
47
|
def client
|
48
|
-
|
48
|
+
timeout = 60 * 5 # 5 minutes
|
49
|
+
HTTPClient.new(agent_name: "dg/#{DeployGate::VERSION}").tap do |c|
|
50
|
+
c.receive_timeout = timeout
|
51
|
+
c.send_timeout = timeout
|
52
|
+
end
|
49
53
|
end
|
50
54
|
|
51
55
|
def headers
|
data/lib/deploygate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploygate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- deploygate
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -424,7 +424,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
424
424
|
- !ruby/object:Gem::Version
|
425
425
|
version: '0'
|
426
426
|
requirements: []
|
427
|
-
|
427
|
+
rubyforge_project:
|
428
|
+
rubygems_version: 2.6.14.3
|
428
429
|
signing_key:
|
429
430
|
specification_version: 4
|
430
431
|
summary: A command-line interface for DeployGate
|