overmind 0.1.2-arm-linux → 2.5.0-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd5c5e797e065096658df8481b8417c4e3b2668741d40bd72065269c8e5795dc
4
- data.tar.gz: 0cc10754c99189642ccad4b0c0c9cff8abdc56431f789f57f6ac5dfd6ef671c3
3
+ metadata.gz: b071334cbbc7bfb5d4a73408683c8e4aed36ab41c4bf6b0b15b568947dce11b9
4
+ data.tar.gz: c6e9bdce11908b9a2ea3e8157c7e4b8df7a597893acab555c4cff436c6714185
5
5
  SHA512:
6
- metadata.gz: 62289a80b144e87236d87dfa5f1347f9372fe5c1db0fbe9e0c9e9b824476f7027fe26b7491d5d6fcec9b60dde158e458f3ecaefd99e7ee979c40d84fa9f21d18
7
- data.tar.gz: 2442dded6ccf1f9a5e58116b5122a8bfb35593d5405a0dfb8bab26b9762c77703e7a4cd8e82ab16f7dd899682a1b930f40e4c9a9bf39fdc811a38399a7b04433
6
+ metadata.gz: e8554a3f7939913de634f2fc2e1b48962937488cf902b335bfcb7c017ebe450341a9cdeafaf2cfd3d831104f1d292d92e90d491aa3d7d8d01f03e562fca672d5
7
+ data.tar.gz: 3c393a50e8d6681c435436fa198e82b1f6d93b1dea2e351a186757d8fe3ef518e7d5f684acda174cad13f14d915e38d5b066c7b30146f46ed94a5c2c5f114649
data/lib/overmind/cli.rb CHANGED
@@ -21,7 +21,7 @@ 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
26
  # Spawns the Overmind process with modified PATH if necessary
27
27
  pid = spawn({"PATH" => path_with_tmux}, "#{OVERMIND_PATH} #{args.join(" ")}")
@@ -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.0"
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.0
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-03-11 00:00:00.000000000 Z
11
+ date: 2024-03-25 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.