openminds_deploy 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -7,18 +7,18 @@ These deploy recipes are all available in the openminds_deploy gem, which can be
7
7
  gem install openminds_deploy
8
8
 
9
9
  == Available recipes
10
- * openminds_deploy/defaults[link:openminds_deploy/defaults.rb] - Defaults for every deployment.
11
- * openminds_deploy/git[link:openminds_deploy/git.rb] - for deploying with git.
12
- * openminds_deploy/svn[link:openminds_deploy/svn.rb] - for deploying with SVN.
13
- * openminds_deploy/passenger[link:openminds_deploy/passenger.rb] - for deploying to a passenger account (zink, pro-004, pro-005, pro-006)
14
- * openminds_deploy/lighttpd[link:openminds_deploy/lighttpd.rb] - for deploying to a lighttpd account (zuurstof, kobalt, koper)
15
- * openminds_deploy/rails3[link:openminds_deploy/rails3.rb] - if you're deploying a Rails3 application. Takes care of Bundler
10
+ * openminds_deploy/defaults - Defaults for every deployment.
11
+ * openminds_deploy/git - for deploying with git.
12
+ * openminds_deploy/svn - for deploying with SVN.
13
+ * openminds_deploy/passenger - for deploying to a passenger account (zink, pro-004, pro-005, pro-006)
14
+ * openminds_deploy/lighttpd - for deploying to a lighttpd account (zuurstof, kobalt, koper)
15
+ * openminds_deploy/rails3 - if you're deploying a Rails3 application. Takes care of Bundler
16
16
 
17
17
  == Example recipe
18
18
 
19
- In this recipe we just set-up our user & application-name, the repository (git in this case) where our application can be found, the server we are deploying to, and require the necesarry deployment files.
19
+ In this recipe we just set-up our user & application-name, the repository (git in this case) where our application can be found, the server we are deploying to, and require the necessary deployment files.
20
20
 
21
- The block around it is a conveniece rescue if someone would deploy with this Capfile that doesn't have this gem installed. The require's can be edited like you need.
21
+ The block around it is a convenience rescue if someone would deploy with this Capfile that doesn't have this gem installed. The require's can be edited like you need.
22
22
 
23
23
  load 'deploy' if respond_to?(:namespace) # cap2 differentiator
24
24
 
@@ -71,4 +71,4 @@ This sets up all stop/start/restart tasks for Passenger
71
71
  This sets up all stop/start/restart tasks for Lighttpd
72
72
 
73
73
  === openminds_deploy/rails3
74
- This sets up bundling tasks with Bundler and does a basic check to see if the server you're on supports Rails 3.
74
+ This sets up bundling tasks with Bundler and does a basic check to see if the server you're on supports Rails 3.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 0.0.6
@@ -22,7 +22,7 @@ configuration.load do
22
22
 
23
23
  desc "Start your application"
24
24
  task :start do
25
- passenger::start
25
+ passenger::restart
26
26
  end
27
27
 
28
28
  desc "Stop your application"
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{openminds_deploy}
8
- s.version = "0.0.5"
8
+ s.version = "0.0.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jan De Poorter"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openminds_deploy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
5
- prerelease: false
4
+ hash: 19
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jan De Poorter
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  requirements: []
70
70
 
71
71
  rubyforge_project:
72
- rubygems_version: 1.3.7
72
+ rubygems_version: 1.5.0
73
73
  signing_key:
74
74
  specification_version: 3
75
75
  summary: Common capistrano recipes for Openminds applications