leehambley-railsless-deploy 0.0.15 → 0.0.16

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.
Files changed (2) hide show
  1. data/README.markdown +23 -23
  2. metadata +1 -1
@@ -9,11 +9,10 @@ If you want to get the most out of Capistrano and you do not want to have to dea
9
9
 
10
10
  ## Usage
11
11
 
12
- Open your application's `Capfile` and replace the following:
12
+ Open your application's `Capfile` and make it look like this, the last three lines are the magic. also you can safely remove line two if you won't be loading additional plugin files. (this is a railsism):
13
13
 
14
- load 'deploy'
15
-
16
- With these three lines:
14
+ load 'deploy' if respond_to?(:namespace) # cap2 differentiator
15
+ # Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
17
16
 
18
17
  require 'rubygems'
19
18
  require 'railsless-deploy'
@@ -23,25 +22,26 @@ You should then be able to proceed as you would usually, you may want to familia
23
22
 
24
23
  $ cap -T
25
24
 
26
- ## What's in the box?
27
-
28
- If you want to try before you buy, here's the list of tasks included with this version of the deploy recipe:
29
-
30
- cap deploy # Deploys your project.
31
- cap deploy:check # Test deployment dependencies.
32
- cap deploy:cleanup # Clean up old releases.
33
- cap deploy:cold # Deploys and starts a `cold' application.
34
- cap deploy:pending # Displays the commits since your last deploy.
35
- cap deploy:pending:diff # Displays the `diff' since your last deploy.
36
- cap deploy:rollback # Rolls back to a previous version and restarts.
37
- cap deploy:rollback:code # Rolls back to the previously deployed version.
38
- cap deploy:setup # Prepares one or more servers for deployment.
39
- cap deploy:symlink # Updates the symlink to the most recently deployed ...
40
- cap deploy:update # Copies your project and updates the symlink.
41
- cap deploy:update_code # Copies your project to the remote servers.
42
- cap deploy:upload # Copy files to the currently deployed version.
43
- cap invoke # Invoke a single command on the remote servers.
44
- cap shell # Begin an interactive Capistrano session.
25
+ ## What's in the box?
26
+
27
+ If you want to try before you buy, here's the list of tasks included with this version of the deploy recipe:
28
+
29
+ cap deploy # Deploys your project.
30
+ cap deploy:check # Test deployment dependencies.
31
+ cap deploy:cleanup # Clean up old releases.
32
+ cap deploy:cold # Deploys and starts a `cold' application.
33
+ cap deploy:pending # Displays the commits since your last deploy.
34
+ cap deploy:pending:diff # Displays the `diff' since your last deploy.
35
+ cap deploy:rollback # Rolls back to a previous version and restarts.
36
+ cap deploy:rollback:code # Rolls back to the previously deployed version.
37
+ cap deploy:setup # Prepares one or more servers for deployment.
38
+ cap deploy:symlink # Updates the symlink to the most recently deployed ...
39
+ cap deploy:update # Copies your project and updates the symlink.
40
+ cap deploy:update_code # Copies your project to the remote servers.
41
+ cap deploy:upload # Copy files to the currently deployed version.
42
+ cap invoke # Invoke a single command on the remote servers.
43
+ cap shell # Begin an interactive Capistrano session.
44
+
45
45
 
46
46
  ## Bugs & Feedback
47
47
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leehambley-railsless-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Hambley