-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into use_github_actions
- Loading branch information
Showing
5 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s| | |
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Jari Bakken", "Eric Kessler", "Shane da Silva"] | ||
s.email = ["[email protected]", "[email protected]"] | ||
s.homepage = "http://github.com/enkessler/childprocess" | ||
s.homepage = "https://github.com/enkessler/childprocess" | ||
s.summary = %q{A simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.} | ||
s.description = %q{This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module ChildProcess::Unix::Platform | ||
SIZEOF = { | ||
:posix_spawn_file_actions_t => 8, | ||
:posix_spawnattr_t => 8, | ||
:sigset_t => 4 | ||
} | ||
POSIX_SPAWN_RESETIDS = 1 | ||
POSIX_SPAWN_SETPGROUP = 2 | ||
POSIX_SPAWN_SETSIGDEF = 4 | ||
POSIX_SPAWN_SETSIGMASK = 8 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,7 +138,7 @@ | |
|
||
stdin.close | ||
process.poll_for_exit(exit_timeout) | ||
ensure | ||
ensure | ||
out_receiver.close | ||
out.close | ||
end | ||
|