procman 1.7.3 → 1.8.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/lib/proc_man.rb +1 -1
- data/lib/proc_man/process.rb +3 -3
- metadata +2 -2
data/lib/proc_man.rb
CHANGED
data/lib/proc_man/process.rb
CHANGED
@@ -79,9 +79,9 @@ module ProcMan
|
|
79
79
|
# A shortcut method for defining a set of RBG processes
|
80
80
|
def rbg(options = {})
|
81
81
|
options[:config_file] ||= "Rbgfile"
|
82
|
-
start { run("
|
83
|
-
stop { run("
|
84
|
-
restart { run("
|
82
|
+
start { run("rbg start -c #{root}/#{options[:config_file]} -E #{environment}") }
|
83
|
+
stop { run("rbg stop -c #{root}/#{options[:config_file]} -E #{environment}") }
|
84
|
+
restart { run("rbg restart -c #{root}/#{options[:config_file]} -E #{environment}") }
|
85
85
|
end
|
86
86
|
|
87
87
|
# A shortcut method for defining a unicorn
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: procman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-03-08 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: A very very simple library for starting/stopping/restarting processes
|
15
15
|
for a Ruby application
|