overman 0.0.1 → 0.88.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +54 -0
- data/bin/foreman-runner +41 -0
- data/bin/overman +7 -0
- data/data/example/Procfile +4 -0
- data/data/example/Procfile.without_colon +2 -0
- data/data/example/error +7 -0
- data/data/example/log/neverdie.log +4 -0
- data/data/example/spawnee +14 -0
- data/data/example/spawner +7 -0
- data/data/example/ticker +14 -0
- data/data/example/utf8 +11 -0
- data/data/export/bluepill/master.pill.erb +28 -0
- data/data/export/daemon/master.conf.erb +14 -0
- data/data/export/daemon/process.conf.erb +8 -0
- data/data/export/daemon/process_master.conf.erb +2 -0
- data/data/export/launchd/launchd.plist.erb +33 -0
- data/data/export/runit/log/run.erb +7 -0
- data/data/export/runit/run.erb +4 -0
- data/data/export/supervisord/app.conf.erb +31 -0
- data/data/export/systemd/master.target.erb +5 -0
- data/data/export/systemd/process.service.erb +21 -0
- data/data/export/upstart/master.conf.erb +2 -0
- data/data/export/upstart/process.conf.erb +15 -0
- data/data/export/upstart/process_master.conf.erb +2 -0
- data/lib/foreman/cli.rb +167 -0
- data/lib/foreman/distribution.rb +9 -0
- data/lib/foreman/engine/cli.rb +105 -0
- data/lib/foreman/engine.rb +494 -0
- data/lib/foreman/env.rb +29 -0
- data/lib/foreman/export/base.rb +170 -0
- data/lib/foreman/export/bluepill.rb +12 -0
- data/lib/foreman/export/daemon.rb +28 -0
- data/lib/foreman/export/inittab.rb +42 -0
- data/lib/foreman/export/launchd.rb +22 -0
- data/lib/foreman/export/runit.rb +34 -0
- data/lib/foreman/export/supervisord.rb +16 -0
- data/lib/foreman/export/systemd.rb +34 -0
- data/lib/foreman/export/upstart.rb +46 -0
- data/lib/foreman/export.rb +36 -0
- data/lib/foreman/helpers.rb +45 -0
- data/lib/foreman/process.rb +81 -0
- data/lib/foreman/procfile.rb +100 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/create_file.rb +103 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/create_link.rb +59 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/directory.rb +118 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/empty_directory.rb +135 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/file_manipulation.rb +327 -0
- data/lib/foreman/vendor/thor/lib/thor/actions/inject_into_file.rb +103 -0
- data/lib/foreman/vendor/thor/lib/thor/actions.rb +318 -0
- data/lib/foreman/vendor/thor/lib/thor/base.rb +656 -0
- data/lib/foreman/vendor/thor/lib/thor/command.rb +133 -0
- data/lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +85 -0
- data/lib/foreman/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/foreman/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
- data/lib/foreman/vendor/thor/lib/thor/error.rb +32 -0
- data/lib/foreman/vendor/thor/lib/thor/group.rb +281 -0
- data/lib/foreman/vendor/thor/lib/thor/invocation.rb +177 -0
- data/lib/foreman/vendor/thor/lib/thor/line_editor/basic.rb +35 -0
- data/lib/foreman/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
- data/lib/foreman/vendor/thor/lib/thor/line_editor.rb +17 -0
- data/lib/foreman/vendor/thor/lib/thor/parser/argument.rb +70 -0
- data/lib/foreman/vendor/thor/lib/thor/parser/arguments.rb +175 -0
- data/lib/foreman/vendor/thor/lib/thor/parser/option.rb +146 -0
- data/lib/foreman/vendor/thor/lib/thor/parser/options.rb +220 -0
- data/lib/foreman/vendor/thor/lib/thor/parser.rb +4 -0
- data/lib/foreman/vendor/thor/lib/thor/rake_compat.rb +71 -0
- data/lib/foreman/vendor/thor/lib/thor/runner.rb +322 -0
- data/lib/foreman/vendor/thor/lib/thor/shell/basic.rb +436 -0
- data/lib/foreman/vendor/thor/lib/thor/shell/color.rb +149 -0
- data/lib/foreman/vendor/thor/lib/thor/shell/html.rb +126 -0
- data/lib/foreman/vendor/thor/lib/thor/shell.rb +81 -0
- data/lib/foreman/vendor/thor/lib/thor/util.rb +268 -0
- data/lib/foreman/vendor/thor/lib/thor/version.rb +3 -0
- data/lib/foreman/vendor/thor/lib/thor.rb +492 -0
- data/lib/foreman/version.rb +5 -0
- data/lib/foreman.rb +17 -0
- data/man/overman.1 +181 -0
- data/spec/foreman/cli_spec.rb +111 -0
- data/spec/foreman/engine_spec.rb +114 -0
- data/spec/foreman/export/base_spec.rb +19 -0
- data/spec/foreman/export/bluepill_spec.rb +37 -0
- data/spec/foreman/export/daemon_spec.rb +97 -0
- data/spec/foreman/export/inittab_spec.rb +40 -0
- data/spec/foreman/export/launchd_spec.rb +31 -0
- data/spec/foreman/export/runit_spec.rb +36 -0
- data/spec/foreman/export/supervisord_spec.rb +38 -0
- data/spec/foreman/export/systemd_spec.rb +155 -0
- data/spec/foreman/export/upstart_spec.rb +118 -0
- data/spec/foreman/export_spec.rb +24 -0
- data/spec/foreman/helpers_spec.rb +26 -0
- data/spec/foreman/process_spec.rb +70 -0
- data/spec/foreman/procfile_spec.rb +65 -0
- data/spec/foreman_spec.rb +16 -0
- data/spec/helper_spec.rb +19 -0
- data/spec/resources/Procfile +5 -0
- data/spec/resources/Procfile.bad +2 -0
- data/spec/resources/bin/echo +2 -0
- data/spec/resources/bin/env +2 -0
- data/spec/resources/bin/test +2 -0
- data/spec/resources/bin/utf8 +2 -0
- data/spec/resources/export/bluepill/app-concurrency.pill +49 -0
- data/spec/resources/export/bluepill/app.pill +81 -0
- data/spec/resources/export/daemon/app-alpha-1.conf +7 -0
- data/spec/resources/export/daemon/app-alpha-2.conf +7 -0
- data/spec/resources/export/daemon/app-alpha.conf +2 -0
- data/spec/resources/export/daemon/app-bravo-1.conf +7 -0
- data/spec/resources/export/daemon/app-bravo.conf +2 -0
- data/spec/resources/export/daemon/app.conf +14 -0
- data/spec/resources/export/inittab/inittab.concurrency +4 -0
- data/spec/resources/export/inittab/inittab.default +6 -0
- data/spec/resources/export/launchd/launchd-a.default +29 -0
- data/spec/resources/export/launchd/launchd-b.default +29 -0
- data/spec/resources/export/launchd/launchd-c.default +30 -0
- data/spec/resources/export/runit/app-alpha-1/log/run +7 -0
- data/spec/resources/export/runit/app-alpha-1/run +4 -0
- data/spec/resources/export/runit/app-alpha-2/log/run +7 -0
- data/spec/resources/export/runit/app-alpha-2/run +4 -0
- data/spec/resources/export/runit/app-bravo-1/log/run +7 -0
- data/spec/resources/export/runit/app-bravo-1/run +4 -0
- data/spec/resources/export/supervisord/app-alpha-1.conf +42 -0
- data/spec/resources/export/supervisord/app-alpha-2.conf +22 -0
- data/spec/resources/export/systemd/app-alpha.1.service +18 -0
- data/spec/resources/export/systemd/app-alpha.2.service +18 -0
- data/spec/resources/export/systemd/app-alpha.target +2 -0
- data/spec/resources/export/systemd/app-bravo.1.service +18 -0
- data/spec/resources/export/systemd/app-bravo.target +2 -0
- data/spec/resources/export/systemd/app.target +5 -0
- data/spec/resources/export/upstart/app-alpha-1.conf +11 -0
- data/spec/resources/export/upstart/app-alpha-2.conf +11 -0
- data/spec/resources/export/upstart/app-alpha.conf +2 -0
- data/spec/resources/export/upstart/app-bravo-1.conf +11 -0
- data/spec/resources/export/upstart/app-bravo.conf +2 -0
- data/spec/resources/export/upstart/app.conf +2 -0
- data/spec/spec_helper.rb +190 -0
- metadata +144 -16
- data/lib/overman/version.rb +0 -5
- data/lib/overman.rb +0 -1
metadata
CHANGED
@@ -1,30 +1,159 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: overman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.88.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
autorequire:
|
7
|
+
- David Dollar
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-07 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
|
-
description:
|
14
|
-
email:
|
15
|
-
|
16
|
-
|
12
|
+
description: Process manager for applications with multiple components, fork of ddollar/foreman
|
13
|
+
email: ddollar@gmail.com
|
14
|
+
executables:
|
15
|
+
- overman
|
17
16
|
extensions: []
|
18
17
|
extra_rdoc_files: []
|
19
18
|
files:
|
20
19
|
- README.md
|
21
|
-
-
|
22
|
-
-
|
23
|
-
|
20
|
+
- bin/foreman-runner
|
21
|
+
- bin/overman
|
22
|
+
- data/example/Procfile
|
23
|
+
- data/example/Procfile.without_colon
|
24
|
+
- data/example/error
|
25
|
+
- data/example/log/neverdie.log
|
26
|
+
- data/example/spawnee
|
27
|
+
- data/example/spawner
|
28
|
+
- data/example/ticker
|
29
|
+
- data/example/utf8
|
30
|
+
- data/export/bluepill/master.pill.erb
|
31
|
+
- data/export/daemon/master.conf.erb
|
32
|
+
- data/export/daemon/process.conf.erb
|
33
|
+
- data/export/daemon/process_master.conf.erb
|
34
|
+
- data/export/launchd/launchd.plist.erb
|
35
|
+
- data/export/runit/log/run.erb
|
36
|
+
- data/export/runit/run.erb
|
37
|
+
- data/export/supervisord/app.conf.erb
|
38
|
+
- data/export/systemd/master.target.erb
|
39
|
+
- data/export/systemd/process.service.erb
|
40
|
+
- data/export/upstart/master.conf.erb
|
41
|
+
- data/export/upstart/process.conf.erb
|
42
|
+
- data/export/upstart/process_master.conf.erb
|
43
|
+
- lib/foreman.rb
|
44
|
+
- lib/foreman/cli.rb
|
45
|
+
- lib/foreman/distribution.rb
|
46
|
+
- lib/foreman/engine.rb
|
47
|
+
- lib/foreman/engine/cli.rb
|
48
|
+
- lib/foreman/env.rb
|
49
|
+
- lib/foreman/export.rb
|
50
|
+
- lib/foreman/export/base.rb
|
51
|
+
- lib/foreman/export/bluepill.rb
|
52
|
+
- lib/foreman/export/daemon.rb
|
53
|
+
- lib/foreman/export/inittab.rb
|
54
|
+
- lib/foreman/export/launchd.rb
|
55
|
+
- lib/foreman/export/runit.rb
|
56
|
+
- lib/foreman/export/supervisord.rb
|
57
|
+
- lib/foreman/export/systemd.rb
|
58
|
+
- lib/foreman/export/upstart.rb
|
59
|
+
- lib/foreman/helpers.rb
|
60
|
+
- lib/foreman/process.rb
|
61
|
+
- lib/foreman/procfile.rb
|
62
|
+
- lib/foreman/vendor/thor/lib/thor.rb
|
63
|
+
- lib/foreman/vendor/thor/lib/thor/actions.rb
|
64
|
+
- lib/foreman/vendor/thor/lib/thor/actions/create_file.rb
|
65
|
+
- lib/foreman/vendor/thor/lib/thor/actions/create_link.rb
|
66
|
+
- lib/foreman/vendor/thor/lib/thor/actions/directory.rb
|
67
|
+
- lib/foreman/vendor/thor/lib/thor/actions/empty_directory.rb
|
68
|
+
- lib/foreman/vendor/thor/lib/thor/actions/file_manipulation.rb
|
69
|
+
- lib/foreman/vendor/thor/lib/thor/actions/inject_into_file.rb
|
70
|
+
- lib/foreman/vendor/thor/lib/thor/base.rb
|
71
|
+
- lib/foreman/vendor/thor/lib/thor/command.rb
|
72
|
+
- lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
73
|
+
- lib/foreman/vendor/thor/lib/thor/core_ext/io_binary_read.rb
|
74
|
+
- lib/foreman/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
75
|
+
- lib/foreman/vendor/thor/lib/thor/error.rb
|
76
|
+
- lib/foreman/vendor/thor/lib/thor/group.rb
|
77
|
+
- lib/foreman/vendor/thor/lib/thor/invocation.rb
|
78
|
+
- lib/foreman/vendor/thor/lib/thor/line_editor.rb
|
79
|
+
- lib/foreman/vendor/thor/lib/thor/line_editor/basic.rb
|
80
|
+
- lib/foreman/vendor/thor/lib/thor/line_editor/readline.rb
|
81
|
+
- lib/foreman/vendor/thor/lib/thor/parser.rb
|
82
|
+
- lib/foreman/vendor/thor/lib/thor/parser/argument.rb
|
83
|
+
- lib/foreman/vendor/thor/lib/thor/parser/arguments.rb
|
84
|
+
- lib/foreman/vendor/thor/lib/thor/parser/option.rb
|
85
|
+
- lib/foreman/vendor/thor/lib/thor/parser/options.rb
|
86
|
+
- lib/foreman/vendor/thor/lib/thor/rake_compat.rb
|
87
|
+
- lib/foreman/vendor/thor/lib/thor/runner.rb
|
88
|
+
- lib/foreman/vendor/thor/lib/thor/shell.rb
|
89
|
+
- lib/foreman/vendor/thor/lib/thor/shell/basic.rb
|
90
|
+
- lib/foreman/vendor/thor/lib/thor/shell/color.rb
|
91
|
+
- lib/foreman/vendor/thor/lib/thor/shell/html.rb
|
92
|
+
- lib/foreman/vendor/thor/lib/thor/util.rb
|
93
|
+
- lib/foreman/vendor/thor/lib/thor/version.rb
|
94
|
+
- lib/foreman/version.rb
|
95
|
+
- man/overman.1
|
96
|
+
- spec/foreman/cli_spec.rb
|
97
|
+
- spec/foreman/engine_spec.rb
|
98
|
+
- spec/foreman/export/base_spec.rb
|
99
|
+
- spec/foreman/export/bluepill_spec.rb
|
100
|
+
- spec/foreman/export/daemon_spec.rb
|
101
|
+
- spec/foreman/export/inittab_spec.rb
|
102
|
+
- spec/foreman/export/launchd_spec.rb
|
103
|
+
- spec/foreman/export/runit_spec.rb
|
104
|
+
- spec/foreman/export/supervisord_spec.rb
|
105
|
+
- spec/foreman/export/systemd_spec.rb
|
106
|
+
- spec/foreman/export/upstart_spec.rb
|
107
|
+
- spec/foreman/export_spec.rb
|
108
|
+
- spec/foreman/helpers_spec.rb
|
109
|
+
- spec/foreman/process_spec.rb
|
110
|
+
- spec/foreman/procfile_spec.rb
|
111
|
+
- spec/foreman_spec.rb
|
112
|
+
- spec/helper_spec.rb
|
113
|
+
- spec/resources/Procfile
|
114
|
+
- spec/resources/Procfile.bad
|
115
|
+
- spec/resources/bin/echo
|
116
|
+
- spec/resources/bin/env
|
117
|
+
- spec/resources/bin/test
|
118
|
+
- spec/resources/bin/utf8
|
119
|
+
- spec/resources/export/bluepill/app-concurrency.pill
|
120
|
+
- spec/resources/export/bluepill/app.pill
|
121
|
+
- spec/resources/export/daemon/app-alpha-1.conf
|
122
|
+
- spec/resources/export/daemon/app-alpha-2.conf
|
123
|
+
- spec/resources/export/daemon/app-alpha.conf
|
124
|
+
- spec/resources/export/daemon/app-bravo-1.conf
|
125
|
+
- spec/resources/export/daemon/app-bravo.conf
|
126
|
+
- spec/resources/export/daemon/app.conf
|
127
|
+
- spec/resources/export/inittab/inittab.concurrency
|
128
|
+
- spec/resources/export/inittab/inittab.default
|
129
|
+
- spec/resources/export/launchd/launchd-a.default
|
130
|
+
- spec/resources/export/launchd/launchd-b.default
|
131
|
+
- spec/resources/export/launchd/launchd-c.default
|
132
|
+
- spec/resources/export/runit/app-alpha-1/log/run
|
133
|
+
- spec/resources/export/runit/app-alpha-1/run
|
134
|
+
- spec/resources/export/runit/app-alpha-2/log/run
|
135
|
+
- spec/resources/export/runit/app-alpha-2/run
|
136
|
+
- spec/resources/export/runit/app-bravo-1/log/run
|
137
|
+
- spec/resources/export/runit/app-bravo-1/run
|
138
|
+
- spec/resources/export/supervisord/app-alpha-1.conf
|
139
|
+
- spec/resources/export/supervisord/app-alpha-2.conf
|
140
|
+
- spec/resources/export/systemd/app-alpha.1.service
|
141
|
+
- spec/resources/export/systemd/app-alpha.2.service
|
142
|
+
- spec/resources/export/systemd/app-alpha.target
|
143
|
+
- spec/resources/export/systemd/app-bravo.1.service
|
144
|
+
- spec/resources/export/systemd/app-bravo.target
|
145
|
+
- spec/resources/export/systemd/app.target
|
146
|
+
- spec/resources/export/upstart/app-alpha-1.conf
|
147
|
+
- spec/resources/export/upstart/app-alpha-2.conf
|
148
|
+
- spec/resources/export/upstart/app-alpha.conf
|
149
|
+
- spec/resources/export/upstart/app-bravo-1.conf
|
150
|
+
- spec/resources/export/upstart/app-bravo.conf
|
151
|
+
- spec/resources/export/upstart/app.conf
|
152
|
+
- spec/spec_helper.rb
|
153
|
+
homepage: https://github.com/spinels/overman
|
24
154
|
licenses:
|
25
155
|
- MIT
|
26
156
|
metadata: {}
|
27
|
-
post_install_message:
|
28
157
|
rdoc_options: []
|
29
158
|
require_paths:
|
30
159
|
- lib
|
@@ -32,15 +161,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
161
|
requirements:
|
33
162
|
- - ">="
|
34
163
|
- !ruby/object:Gem::Version
|
35
|
-
version: 2.
|
164
|
+
version: 2.3.8
|
36
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
166
|
requirements:
|
38
167
|
- - ">="
|
39
168
|
- !ruby/object:Gem::Version
|
40
169
|
version: '0'
|
41
170
|
requirements: []
|
42
|
-
rubygems_version: 3.2
|
43
|
-
signing_key:
|
171
|
+
rubygems_version: 3.6.2
|
44
172
|
specification_version: 4
|
45
|
-
summary:
|
173
|
+
summary: Process manager for applications with multiple components, fork of ddollar/foreman
|
46
174
|
test_files: []
|
data/lib/overman/version.rb
DELETED
data/lib/overman.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require_relative "overman/version"
|