foreman 0.27.0 → 0.37.0
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.
- data/README.md +39 -0
- data/bin/runner +36 -0
- data/data/export/bluepill/master.pill.erb +3 -3
- data/lib/foreman/cli.rb +34 -32
- data/lib/foreman/engine.rb +97 -78
- data/lib/foreman/export/base.rb +12 -5
- data/lib/foreman/export/bluepill.rb +5 -7
- data/lib/foreman/export/inittab.rb +11 -13
- data/lib/foreman/export/runit.rb +24 -25
- data/lib/foreman/export/upstart.rb +9 -11
- data/lib/foreman/export.rb +21 -0
- data/lib/foreman/helpers.rb +45 -0
- data/lib/foreman/process.rb +88 -6
- data/lib/foreman/procfile.rb +8 -7
- data/lib/foreman/procfile_entry.rb +22 -0
- data/lib/foreman/utils.rb +4 -1
- data/lib/foreman/version.rb +1 -1
- data/lib/foreman.rb +13 -1
- data/man/foreman.1 +5 -1
- data/spec/foreman/cli_spec.rb +77 -7
- data/spec/foreman/engine_spec.rb +13 -26
- data/spec/foreman/export/base_spec.rb +22 -0
- data/spec/foreman/export/bluepill_spec.rb +23 -7
- data/spec/foreman/export/inittab_spec.rb +40 -0
- data/spec/foreman/export/runit_spec.rb +18 -12
- data/spec/foreman/export/upstart_spec.rb +40 -8
- data/spec/foreman/export_spec.rb +22 -0
- data/spec/foreman/helpers_spec.rb +26 -0
- data/spec/foreman/process_spec.rb +131 -2
- data/spec/foreman_spec.rb +8 -7
- data/spec/helper_spec.rb +18 -0
- data/spec/resources/export/bluepill/app-concurrency.pill +47 -0
- data/spec/resources/export/bluepill/app.pill +1 -22
- data/spec/resources/export/inittab/inittab.concurrency +4 -0
- data/spec/resources/export/inittab/inittab.default +4 -0
- data/spec/spec_helper.rb +31 -3
- metadata +19 -15
- data/README.markdown +0 -49
data/README.markdown
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Foreman
|
|
2
|
-
|
|
3
|
-
## Installation
|
|
4
|
-
|
|
5
|
-
* Rubygems
|
|
6
|
-
|
|
7
|
-
gem install foreman
|
|
8
|
-
|
|
9
|
-
* OSX
|
|
10
|
-
|
|
11
|
-
http://assets.foreman.io/foreman/foreman.pkg
|
|
12
|
-
|
|
13
|
-
* Standalone Tarball
|
|
14
|
-
|
|
15
|
-
http://assets.foreman.io/foreman/foreman.tgz
|
|
16
|
-
|
|
17
|
-
## Description
|
|
18
|
-
|
|
19
|
-
http://blog.daviddollar.org/2011/05/06/introducing-foreman.html
|
|
20
|
-
|
|
21
|
-
## Manual
|
|
22
|
-
|
|
23
|
-
See the [man page](http://ddollar.github.com/foreman) for usage.
|
|
24
|
-
|
|
25
|
-
## Authorship
|
|
26
|
-
|
|
27
|
-
Created by David Dollar
|
|
28
|
-
|
|
29
|
-
Patches contributed by:
|
|
30
|
-
|
|
31
|
-
* Adam Wiggins
|
|
32
|
-
* Dan Peterson
|
|
33
|
-
* Hunter Nield
|
|
34
|
-
* Jay Zeschin
|
|
35
|
-
* Keith Rarick
|
|
36
|
-
* Khaja Minhajuddin
|
|
37
|
-
* Matt Haynes
|
|
38
|
-
* Michael van Rooijen
|
|
39
|
-
* Mike Javorski
|
|
40
|
-
* Nathan L Smith
|
|
41
|
-
* Nick Zadrozny
|
|
42
|
-
* Ricardo Chimal, Jr
|
|
43
|
-
* Thom May
|
|
44
|
-
* clifff
|
|
45
|
-
* Greg Reinacker
|
|
46
|
-
|
|
47
|
-
## License
|
|
48
|
-
|
|
49
|
-
MIT
|