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.
Files changed (3) hide show
  1. data/README.md +5 -5
  2. data/capistrano-deploy.gemspec +1 -1
  3. 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-lest/deploy'
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-lest/multistage'
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-lest/bundle'
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-lest/unicorn'
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-lest/whenever'
70
+ require 'capistrano-deploy/whenever'
71
71
 
72
72
  To automatically update crontab file:
73
73
 
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'capistrano-deploy'
4
- s.version = '0.0.3'
4
+ s.version = '0.0.4'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Just Lest']
7
7
  s.email = ['just.lest@gmail.com']
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: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Just Lest