capistrano-mono-deploy 0.1.1 → 0.1.2
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/capistrano-mono-deploy.gemspec +1 -1
- data/lib/capistrano/mono/custom.rb +2 -2
- metadata +1 -1
@@ -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-mono-deploy"
|
7
|
-
gem.version = "0.1.
|
7
|
+
gem.version = "0.1.2"
|
8
8
|
gem.authors = ["Antony Denyer"]
|
9
9
|
gem.email = ["antonydenyer@gmail.com"]
|
10
10
|
gem.description = %q{some capistrano recipes for deploying mono apps on to linux servers, currently only supports xsp}
|
@@ -25,12 +25,12 @@ module Capistrano
|
|
25
25
|
end
|
26
26
|
def start()
|
27
27
|
puts "starting application using custom command"
|
28
|
-
@configuration.run("#{
|
28
|
+
@configuration.run("#{start_command}")
|
29
29
|
end
|
30
30
|
|
31
31
|
def stop()
|
32
32
|
puts "stopping application using custom command"
|
33
|
-
@configuration.run("#{
|
33
|
+
@configuration.run("#{stop_command}")
|
34
34
|
end
|
35
35
|
end
|
36
36
|
end
|