capistrano-rpush 0.1.2 → 0.1.3
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 +4 -4
- data/lib/capistrano/rpush/version.rb +1 -1
- data/lib/capistrano/tasks/rpush.rake +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 545dd08ca9d57c62822a9dc2851fcb418ba53206
|
|
4
|
+
data.tar.gz: 4fd3c3384d713a6a378f9fa53297a7d15fd1bf6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50fd2c27107c2171383cf87d95e8b67b4f5d263b30edd8545f1c165360bd9e888360555ab46c59e7afe7a49ba2eb88183dc62dd2e4872554fd7a613588aa1cb4
|
|
7
|
+
data.tar.gz: e1527e56036c24e84319c2d2be562547b454b54c9be9dc64381225bac5390f2347d8a6f71eeb3662a5e1bd0c9a53af28b135035a3be540917f257fd77a168d9e
|
|
@@ -53,7 +53,7 @@ namespace :rpush do
|
|
|
53
53
|
end
|
|
54
54
|
within current_path do
|
|
55
55
|
with rack_env: fetch(:rpush_env) do
|
|
56
|
-
execute :rpush, "start -p #{
|
|
56
|
+
execute :rpush, "start -p #{fetch(:rpush_pid)} -c #{fetch(:rpush_conf)} -e #{fetch(:rpush_env)}"
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
end
|
|
@@ -67,7 +67,7 @@ namespace :rpush do
|
|
|
67
67
|
unless test "[ -f #{fetch(:rpush_conf)} ]"
|
|
68
68
|
within current_path do
|
|
69
69
|
with rack_env: fetch(:rpush_env) do
|
|
70
|
-
execute :rpush, "status -c #{fetch(:rpush_conf)} -e #{
|
|
70
|
+
execute :rpush, "status -c #{fetch(:rpush_conf)} -e #{fetch(:rpush_env)}"
|
|
71
71
|
end
|
|
72
72
|
end
|
|
73
73
|
end
|
|
@@ -82,7 +82,7 @@ namespace :rpush do
|
|
|
82
82
|
unless test "[ -f #{fetch(:rpush_pid)} ]"
|
|
83
83
|
within current_path do
|
|
84
84
|
with rack_env: fetch(:rpush_env) do
|
|
85
|
-
execute :rpush, "stop -p #{
|
|
85
|
+
execute :rpush, "stop -p #{fetch(:rpush_pid)} -c #{fetch(:rpush_conf)} -e #{fetch(:rpush_env)}"
|
|
86
86
|
end
|
|
87
87
|
end
|
|
88
88
|
end
|