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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 08df5d523ff73a1a0d859f2285538f709987a729
4
- data.tar.gz: 03b0d0d1e71ec42fb5e1c93fee8612a72d1b86ce
3
+ metadata.gz: 15ef26a1d8174bd57b27355dac98734659336277
4
+ data.tar.gz: 5521c5143aa5b261a2a929d24f5933aceb339711
5
5
  SHA512:
6
- metadata.gz: 5d236987c6f258313027496882c7bbcbd438ceb23ee56027ba96dee02aaf5020e33e7fa12e7695c431594f0c59f82f5a51e33d244061878f4ea18869b9c10f3a
7
- data.tar.gz: 1d9b8f8407f61df638451f183cda662a4385c8a34e7d3fda11fe0146d3bb3c97800c483b35a8ff3c0e6a770d2a25298ff8578b6c4cd4bbb862ebb1bcc7dcb976
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
- :SIGINT
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
@@ -1,5 +1,5 @@
1
1
  module Aptible
2
2
  module CLI
3
- VERSION = '0.8.2'.freeze
3
+ VERSION = '0.8.3'.freeze
4
4
  end
5
5
  end
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.2
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-04 00:00:00.000000000 Z
11
+ date: 2017-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aptible-api