capistrano-deploy 0.0.3 → 0.0.4
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.md +5 -5
- data/capistrano-deploy.gemspec +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Git-based deployment process.
|
|
|
8
8
|
|
|
9
9
|
Minimal Capfile for deploy:
|
|
10
10
|
|
|
11
|
-
require 'capistrano-
|
|
11
|
+
require 'capistrano-deploy/deploy'
|
|
12
12
|
|
|
13
13
|
server 'server name or ip address', :web, :app, :db, :primary => true
|
|
14
14
|
set :user, 'user for deploy'
|
|
@@ -34,7 +34,7 @@ To look through changes to be deployed:
|
|
|
34
34
|
Multistage
|
|
35
35
|
----------
|
|
36
36
|
|
|
37
|
-
require 'capistrano-
|
|
37
|
+
require 'capistrano-deploy/multistage'
|
|
38
38
|
|
|
39
39
|
set :default_stage, :development
|
|
40
40
|
|
|
@@ -49,7 +49,7 @@ Multistage
|
|
|
49
49
|
Bundle
|
|
50
50
|
------
|
|
51
51
|
|
|
52
|
-
require 'capistrano-
|
|
52
|
+
require 'capistrano-deploy/bundle'
|
|
53
53
|
|
|
54
54
|
To automatically install missing gems:
|
|
55
55
|
|
|
@@ -58,7 +58,7 @@ To automatically install missing gems:
|
|
|
58
58
|
Unicorn
|
|
59
59
|
-------
|
|
60
60
|
|
|
61
|
-
require 'capistrano-
|
|
61
|
+
require 'capistrano-deploy/unicorn'
|
|
62
62
|
|
|
63
63
|
Now you can setup to reload unicorn on `deploy:restart`:
|
|
64
64
|
|
|
@@ -67,7 +67,7 @@ Now you can setup to reload unicorn on `deploy:restart`:
|
|
|
67
67
|
Whenever
|
|
68
68
|
--------
|
|
69
69
|
|
|
70
|
-
require 'capistrano-
|
|
70
|
+
require 'capistrano-deploy/whenever'
|
|
71
71
|
|
|
72
72
|
To automatically update crontab file:
|
|
73
73
|
|
data/capistrano-deploy.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Just Lest
|