overmind 0.1.2-arm-freebsd → 2.5.1-arm-freebsd

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 403a2d22356c1ce9790f14fbe575b8b360f644f053c0cbf25e32351057b496ff
4
- data.tar.gz: bc430d3482f210e89c104c92f457df3c7df28a4e18dd47141433989adc95debe
3
+ metadata.gz: 6dbd19a4edd1b98051943b313a687205b0ae6704e68ae094c9beee877500a3b6
4
+ data.tar.gz: c39c1d0156decdeac02d219e0d88cd534394914981074aa9ef493785efab7ab9
5
5
  SHA512:
6
- metadata.gz: 67c3fffca73d0a39f206745dac5a890c99346a9a87a8cd206fc01f6383b474098c0d31c0153b156677bf8071c1ad3fcbb342b6d9e12578e8bc2218e55ab8db10
7
- data.tar.gz: f36df0280a43bb0d1baf5d8479620568fc8285add178d279cdd6aac2de2e4556f01c47a786d92487620b7353d9d57b21b5ba7b4be7300de977677f09554f0b06
6
+ metadata.gz: 27135025542fb87b74b0fc8d5d4b5a6209b52593660f516106ec852cc061f28e90d5553a20eaf33da154c3a3ea6beccdba821cb0b1db5216a2a445d10b90856b
7
+ data.tar.gz: ba1b981366765435288cb7f5b8366c5a0f962aeac162b5b57ab321b21304a59637cb26f108d89d5114b6371c7a1cf09dc7e9dba737d7e29275d5350caf981b0a
data/bin/overmind CHANGED
@@ -5,8 +5,7 @@ require 'overmind/cli'
5
5
 
6
6
  begin
7
7
  cli = Overmind::CLI.new
8
- exit_code = cli.run(ARGV)
9
- exit exit_code
8
+ cli.run(ARGV)
10
9
  rescue StandardError => e
11
10
  warn e.message
12
11
  exit 1
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"]}:#{TMUX_FOLDER_PATH}" : ENV["PATH"]
24
+ path_with_tmux = File.exist?(TMUX_PATH) ? "#{TMUX_FOLDER_PATH}:#{ENV["PATH"]}" : ENV["PATH"]
25
25
 
26
- # Spawns the Overmind process with modified PATH if necessary
27
- pid = spawn({"PATH" => path_with_tmux}, "#{OVERMIND_PATH} #{args.join(" ")}")
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Overmind
4
- VERSION = "0.1.2"
4
+ VERSION = "2.5.1"
5
5
  end
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 = ">= 0"
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: 0.1.2
4
+ version: 2.5.1
5
5
  platform: arm-freebsd
6
6
  authors:
7
7
  - prog-supdex
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-11 00:00:00.000000000 Z
11
+ date: 2024-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -82,14 +82,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
84
84
  - !ruby/object:Gem::Version
85
- version: '0'
85
+ version: '2.3'
86
86
  required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.4.21
92
+ rubygems_version: 3.2.3
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: Overmind is a process manager for Procfile-based applications and tmux.