openminds_deploy 0.0.5 → 0.0.6
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/README.rdoc +9 -9
- data/VERSION +1 -1
- data/lib/openminds_deploy/passenger.rb +1 -1
- data/openminds_deploy.gemspec +1 -1
- metadata +5 -5
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
|
11
|
-
* openminds_deploy/git
|
12
|
-
* openminds_deploy/svn
|
13
|
-
* openminds_deploy/passenger
|
14
|
-
* openminds_deploy/lighttpd
|
15
|
-
* openminds_deploy/rails3
|
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
|
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
|
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.
|
1
|
+
0.0.6
|
data/openminds_deploy.gemspec
CHANGED
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:
|
5
|
-
prerelease:
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
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.
|
72
|
+
rubygems_version: 1.5.0
|
73
73
|
signing_key:
|
74
74
|
specification_version: 3
|
75
75
|
summary: Common capistrano recipes for Openminds applications
|