xendeploy 0.16.1 → 0.17
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/xendeploy/recipes/build.rb +12 -0
- metadata +1 -1
|
@@ -2,9 +2,21 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
2
2
|
|
|
3
3
|
namespace :xen do
|
|
4
4
|
namespace :build do
|
|
5
|
+
|
|
5
6
|
task :default do
|
|
6
7
|
puts "default build"
|
|
7
8
|
end
|
|
9
|
+
|
|
10
|
+
desc "Add a new job to the build server"
|
|
11
|
+
task :add do
|
|
12
|
+
puts "adding builder..."
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
desc "Run build script"
|
|
16
|
+
task :run do
|
|
17
|
+
puts "running build script..."
|
|
18
|
+
end
|
|
19
|
+
|
|
8
20
|
end
|
|
9
21
|
end
|
|
10
22
|
|