eycap 0.6.2 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/lib/eycap/recipes/unicorn.rb +3 -3
- data/lib/eycap/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -27,21 +27,21 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
27
27
|
Reloads the unicorn works gracefully - Use deploy task for deploys
|
28
28
|
DESC
|
29
29
|
task :reload, :roles => [:app], :except => {:unicorn => false} do
|
30
|
-
|
30
|
+
run "/engineyard/bin/unicorn #{application} reload"
|
31
31
|
end
|
32
32
|
|
33
33
|
desc <<-DESC
|
34
34
|
Adds a Unicorn worker - Beware of causing your host to swap, this setting isn't permanent
|
35
35
|
DESC
|
36
36
|
task :aworker, :roles => [:app], :except => {:unicorn => false} do
|
37
|
-
|
37
|
+
run "/engineyard/bin/unicorn #{application} aworker"
|
38
38
|
end
|
39
39
|
|
40
40
|
desc <<-DESC
|
41
41
|
Removes a unicorn worker (gracefully)
|
42
42
|
DESC
|
43
43
|
task :rworker, :roles => [:app], :except => {:unicorn => false} do
|
44
|
-
|
44
|
+
run "/engineyard/bin/unicorn #{application} rworker"
|
45
45
|
end
|
46
46
|
|
47
47
|
desc <<-DESC
|
data/lib/eycap/version.rb
CHANGED