overmind 0.1.2-arm64-linux → 2.5.1-arm64-linux

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: 0f0f4ce5b082f838cc9ddb7f943c540fae5f59bc7e6831e44bc9250663871f17
4
- data.tar.gz: 33a2099415bc01ea3d14df27b56ab405d683481e4100320ee6e86a804d2d9a45
3
+ metadata.gz: ed5efa434e28faccb486b61689a8dbf5e78dc587b4eafc7e84f274953f67640a
4
+ data.tar.gz: cac9a58618a583b9ff7cd86d2da0a76f789fe0e476cd8741e1e9a104ef49d1c2
5
5
  SHA512:
6
- metadata.gz: bf7ddfaea4186db855c124fc9a8c07458cbdd2d6c0b82b3b0a9088e0522e392d28811982e45d8de343c33ec068ffbb3ae1b3826f21cc602622e41a59872963b4
7
- data.tar.gz: f222a9c9253305549a940f15ca5c4152409b03439dab75665c3f69e15bd06acf9a848b27b077b1eeaeab22dc939b027e8da8b95e8f69a808589d886ec889674e
6
+ metadata.gz: 4942d744264c8cb90809d0bc795c3636140cb4908bcd7472d182887340eefd1682c65533fa93778aba16da1c13ac35b1b437c71a72cdee2773f70ef5a188bb1e
7
+ data.tar.gz: 61c0c2e41197362e62b7e8c35912692bceaf1ab8439b495aa4da28fdfd81d47698fe306d37f1da63232538d1485a3f72a26370800481ff489333b30a4e468f01
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: arm64-linux
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
@@ -83,14 +83,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
83
  requirements:
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: '0'
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.4.21
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.