forkcms_3_deploy 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +2 -6
  2. data/VERSION +1 -1
  3. data/forkcms_3_deploy.gemspec +1 -1
  4. metadata +3 -3
data/README.md CHANGED
@@ -24,7 +24,7 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
24
24
  set :deploy_to, "/home/#{user}/apps/#{application}" # eg.: /home/sumocoders/apps/sumocoders.be
25
25
 
26
26
  # set document_root
27
- set :document_root, "/home/#{user}/www.your-app.com" # eg.: /home/sumocoders/default_www
27
+ set :document_root, "/home/#{user}/www.your-app.com" # eg.: /home/sumocoders/www.sumocoderS.be
28
28
 
29
29
  # define roles
30
30
  server "your-app.com", :app, :web, :db, :primary => true # eg.: crsolutions.be
@@ -33,10 +33,6 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
33
33
  set :repository, "git@your-git.com:your-app.git" # eg.: git@crsolutions.be:sumocoders.be.git
34
34
  set :branch, "master"
35
35
 
36
- # set version control type and copy strategy
37
- set :scm, :git
38
- set :copy_strategy, :checkout
39
-
40
36
  begin
41
37
  require 'forkcms_3_deploy'
42
38
  require 'forkcms_3_deploy/defaults' # optional, contains best practices
@@ -44,7 +40,7 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
44
40
  $stderr.puts <<-INSTALL
45
41
  You need the forkcms_3_deploy gem (which simplifies this Capfile) to deploy this application
46
42
  Install the gem like this:
47
- gem install forkcms_deploy
43
+ gem install forkcms_3_deploy
48
44
  INSTALL
49
45
  exit 1
50
46
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.1.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "forkcms_3_deploy"
8
- s.version = "1.1.0"
8
+ s.version = "1.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tijs Verkoyen", "Sam Tubbax"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forkcms_3_deploy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tijs Verkoyen