aptible-cli 0.8.2 → 0.8.3
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/lib/aptible/cli/helpers/tunnel.rb +7 -7
- data/lib/aptible/cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15ef26a1d8174bd57b27355dac98734659336277
|
|
4
|
+
data.tar.gz: 5521c5143aa5b261a2a929d24f5933aceb339711
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cedfbebbf101cac17f840d8701cf5198238c8081dc09059aaa87e8f78f4963530441090855adb62a96cdf411ed6ed24197279db96ede0dde7cccc50bc89325f
|
|
7
|
+
data.tar.gz: a8a342ebd3e1c1f6512dbe9c1d5f9cb86382dc8ab1f49bd589f5dabacadaa2bac1ce8b5c81bc1568dcf98f3b6f5c0a0ff971b8a18d2462dfad7c0a90e7b1c623
|
|
@@ -5,17 +5,17 @@ require 'win32-process' if Gem.win_platform?
|
|
|
5
5
|
module Aptible
|
|
6
6
|
module CLI
|
|
7
7
|
module Helpers
|
|
8
|
-
# The :new_pgroup key specifies the CREATE_NEW_PROCESS_GROUP flag for
|
|
9
|
-
# CreateProcessW() in the Windows API. This is a Windows only option.
|
|
10
|
-
# true means the new process is the root process of the new process
|
|
11
|
-
# group.
|
|
12
|
-
# This flag is necessary for Process.kill(:SIGINT, pid) on the
|
|
13
|
-
# subprocess.
|
|
14
8
|
STOP_SIGNAL = if Gem.win_platform?
|
|
15
|
-
:
|
|
9
|
+
:SIGBRK
|
|
16
10
|
else
|
|
17
11
|
:SIGHUP
|
|
18
12
|
end
|
|
13
|
+
|
|
14
|
+
# The :new_pgroup key specifies the CREATE_NEW_PROCESS_GROUP flag for
|
|
15
|
+
# CreateProcessW() in the Windows API. This is a Windows only option.
|
|
16
|
+
# true means the new process is the root process of the new process
|
|
17
|
+
# group. This flag is necessary to be able to signal the subprocess on
|
|
18
|
+
# Windows.
|
|
19
19
|
SPAWN_OPTS = if Gem.win_platform?
|
|
20
20
|
{ new_pgroup: true }
|
|
21
21
|
else
|
data/lib/aptible/cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aptible-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frank Macreery
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aptible-api
|