overmind 0.1.2-arm-linux → 2.5.1-arm-linux
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/bin/overmind +1 -2
- data/lib/overmind/cli.rb +3 -7
- data/lib/overmind/version.rb +1 -1
- data/libexec/overmind +0 -0
- data/overmind.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 673bd61fd23607387a3695a927532c8d7ad2bace344b17459fc14997a0ffb6cb
|
4
|
+
data.tar.gz: 21bee8f4a22a5242de4cd95b4eab4dd12e32a9a877f31a1e0477b697e2601b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b58aaf589ef45bb806fb1d4cdff06166713b551ed38386478cc58d8d656d46cbb61bf676c7435ba8a90b5ae49dd25186ac696a6f0d267fa0270ca323e49ee273
|
7
|
+
data.tar.gz: ffc62c2290e50fb018297b0e95a5aeacf85aa5f0c2f63cfd1217e87f365cd7bf545d240284784c3eb349b88af06192766fa2c160c51c954fe35f18d3f7f4c7c5
|
data/bin/overmind
CHANGED
data/lib/overmind/cli.rb
CHANGED
@@ -21,14 +21,10 @@ module Overmind
|
|
21
21
|
args = args.map { |x| x.include?(" ") ? "'#{x}'" : x }
|
22
22
|
|
23
23
|
# Use prebuild tmux if found
|
24
|
-
path_with_tmux = File.exist?(TMUX_PATH) ? "#{ENV["PATH"]}
|
24
|
+
path_with_tmux = File.exist?(TMUX_PATH) ? "#{TMUX_FOLDER_PATH}:#{ENV["PATH"]}" : ENV["PATH"]
|
25
25
|
|
26
|
-
#
|
27
|
-
|
28
|
-
|
29
|
-
Process.wait(pid)
|
30
|
-
|
31
|
-
$?.exitstatus
|
26
|
+
# exec the Overmind process with modified PATH if necessary
|
27
|
+
exec({"PATH" => path_with_tmux}, "#{OVERMIND_PATH} #{args.join(" ")}")
|
32
28
|
end
|
33
29
|
|
34
30
|
private
|
data/lib/overmind/version.rb
CHANGED
data/libexec/overmind
CHANGED
Binary file
|
data/overmind.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = "Overmind is a process manager for Procfile-based applications and tmux."
|
13
13
|
spec.homepage = "https://github.com/DarthSim/overmind"
|
14
14
|
spec.license = "MIT"
|
15
|
-
spec.required_ruby_version = ">=
|
15
|
+
spec.required_ruby_version = ">= 2.3"
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
18
|
spec.metadata["source_code_uri"] = "https://github.com/DarthSim/overmind"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: overmind
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.5.1
|
5
5
|
platform: arm-linux
|
6
6
|
authors:
|
7
7
|
- prog-supdex
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -83,14 +83,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '
|
86
|
+
version: '2.3'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - ">="
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
|
-
rubygems_version: 3.
|
93
|
+
rubygems_version: 3.2.3
|
94
94
|
signing_key:
|
95
95
|
specification_version: 4
|
96
96
|
summary: Overmind is a process manager for Procfile-based applications and tmux.
|