capistrano-windows-server 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -4
- data/VERSION +1 -1
- data/capistrano-windows-server.gemspec +2 -2
- data/lib/capistrano/ext/windows_server.rb +4 -4
- metadata +4 -4
data/README.md
CHANGED
@@ -80,13 +80,13 @@ You can use Apache or your web server of choice to proxy for your mongrel instan
|
|
80
80
|
Setting up capistrano for your Rails project
|
81
81
|
--------------------------------------------
|
82
82
|
|
83
|
-
**Rails
|
83
|
+
**Rails 3.x**: Add the capistrano-windows-server gem to your Gemfile, and run `bundle`.
|
84
84
|
|
85
|
-
|
85
|
+
gem "capistrano-windows-server", :lib => "capistrano"
|
86
86
|
|
87
|
-
**Rails
|
87
|
+
**Rails 2.x**: Add the capistrano-windows-server environment.rb, and run `rake gems:install`.
|
88
88
|
|
89
|
-
gem "capistrano-windows-server", :lib => "capistrano"
|
89
|
+
config.gem "capistrano-windows-server", :lib => "capistrano"
|
90
90
|
|
91
91
|
Set up capistrano as you normally would with `capify`.
|
92
92
|
The [capistrano wiki](https://github.com/capistrano/capistrano/wiki/2.x-From-The-Beginning) and
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{capistrano-windows-server}
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Edward Anderson"]
|
12
|
-
s.date = %q{2011-08-
|
12
|
+
s.date = %q{2011-08-19}
|
13
13
|
s.description = %q{This gem modifies capistrano recipes to allow deploys to windows machines.
|
14
14
|
Several nuances such as the lack of symlinks make the deploy a little different, but it's better than doing it by hand.
|
15
15
|
See the github page for instruction on how to set up Windows to get it ready for a deploy.}
|
@@ -84,22 +84,22 @@ configuration.load do
|
|
84
84
|
desc "Start mongrel"
|
85
85
|
task :start do
|
86
86
|
mongrel_instances.each do |n|
|
87
|
-
run "net start #{mongrel_instance_prefix}#{n}"
|
87
|
+
run "net start #{mongrel_instance_prefix}#{n}; true"
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
91
91
|
desc "Stop mongrel"
|
92
92
|
task :stop do
|
93
93
|
mongrel_instances.each do |n|
|
94
|
-
run "net stop #{mongrel_instance_prefix}#{n}"
|
94
|
+
run "net stop #{mongrel_instance_prefix}#{n}; true"
|
95
95
|
end
|
96
96
|
end
|
97
97
|
|
98
98
|
desc "Restart mongrel"
|
99
99
|
task :restart do
|
100
100
|
mongrel_instances.each do |n|
|
101
|
-
run "net stop #{mongrel_instance_prefix}#{n}"
|
102
|
-
run "net start #{mongrel_instance_prefix}#{n}"
|
101
|
+
run "net stop #{mongrel_instance_prefix}#{n}; true"
|
102
|
+
run "net start #{mongrel_instance_prefix}#{n}; true"
|
103
103
|
end
|
104
104
|
end
|
105
105
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-windows-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 1
|
10
|
+
version: 0.4.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Edward Anderson
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-08-
|
18
|
+
date: 2011-08-19 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|