capistrano-scm-local 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +5 -0
- data/capistrano-scm-local.gemspec +1 -1
- data/lib/capistrano/tasks/scm-local.rake +3 -3
- metadata +1 -1
data/README.md
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "capistrano-scm-local"
|
7
|
-
gem.version = '0.1.
|
7
|
+
gem.version = '0.1.5'
|
8
8
|
gem.authors = ["Boris Gorbylev"]
|
9
9
|
gem.email = ["ekho@ekho.name"]
|
10
10
|
gem.description = %q{Capistrano extension for deploying form local directory}
|
@@ -9,13 +9,13 @@ namespace :local do
|
|
9
9
|
m = strategies[m]
|
10
10
|
end
|
11
11
|
|
12
|
-
@
|
12
|
+
@local_strategy ||= Capistrano::Local.new(self, m)
|
13
13
|
end
|
14
14
|
|
15
15
|
desc 'Check that the source is reachable'
|
16
16
|
task :check do
|
17
17
|
run_locally do
|
18
|
-
exit 1 unless
|
18
|
+
exit 1 unless local_strategy.check
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
@@ -26,6 +26,6 @@ namespace :local do
|
|
26
26
|
execute :mkdir, '-p', release_path
|
27
27
|
end
|
28
28
|
end
|
29
|
-
|
29
|
+
local_strategy.release
|
30
30
|
end
|
31
31
|
end
|