capistrano-robo 0.0.3 → 0.0.4
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/robo/robo.rake +1 -2
- data/lib/capistrano/robo/version.rb +1 -1
- 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: 977e7f7de0866d282e208f0bd8bf3c6bb4a5ec74
|
4
|
+
data.tar.gz: d8e4a4b7a7ce50dc7be557d47925cc1d33cf72ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17e2bf385a1f26c8e862e90631ab4f84787c58b72b2a9c85df3c21347249fae9ad8140d153a1ad66fbd91a80bd96c8782178dd66d6cb2e0fe96e5dac0576f9ca
|
7
|
+
data.tar.gz: 2831671b2b3ab67a64444b7d30a2731c5e82874b008f6a335b89864088504e857a2910291d9e10893a98529ceb4c79c187e01e932331b6da4a1940f8841572a1
|
@@ -12,7 +12,7 @@ DESC
|
|
12
12
|
task :robo, :task_name do |t, args|
|
13
13
|
fail ArgumentError.new('The robo task needs an argument, none passed.') unless args[:task_name]
|
14
14
|
on roles fetch(:robo_roles) do
|
15
|
-
within fetch(:robo_target_path) do
|
15
|
+
within fetch(:robo_target_path, release_path) do
|
16
16
|
options = [fetch(:robo_flags)]
|
17
17
|
options << args[:task_name]
|
18
18
|
|
@@ -28,7 +28,6 @@ end
|
|
28
28
|
namespace :load do
|
29
29
|
task :defaults do
|
30
30
|
set :robo_exec, 'robo'
|
31
|
-
set :robo_target_path, release_path
|
32
31
|
set :robo_roles, :all
|
33
32
|
set :robo_flags, '-v'
|
34
33
|
end
|