capistrano-forkcms 1.0.1 → 1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3bb3f838a9decc5e3f5abb35a9be070cb29ec62
4
- data.tar.gz: b50cb4edf7b9bad52d0b59084051094a6eac517e
3
+ metadata.gz: a8b4c0990c9f4473ff2a104e47f03b573126778c
4
+ data.tar.gz: acf272f5407fd07c42b18be94d0c8ce60f059a2f
5
5
  SHA512:
6
- metadata.gz: 3735442b1fcc2b7219871c836528c842552eb511947c79279c694153a574881a6603dcd91cabba43c72e0fc293bf64fd099da958548ca3b8f2bef115a926b6ee
7
- data.tar.gz: d8c1560817561229a24bf24d87fc476eb6d2e3f08f047acc7922678516d3354fb489c4c7cb39dc75cc59794541a97d0a4db137afa3e0b62b8c08709a33810a7e
6
+ metadata.gz: 129fb6075d179fbbdc02faf22d5e50867576360d3c629ee6b08cf598f82b4d8f2dfe8923c737b83223aca7f0976b913132313b64cbfed74031a2c338679380df
7
+ data.tar.gz: c64f1b054c70d3124c8b97e8790ac1f8b078c2bd624112e0c2073516cade4a8d56b09c184b06ea921db71a3eb57376c2bed16afcd2908a55be56bfd4ddbda76c
data/README.md CHANGED
@@ -43,36 +43,44 @@ Configuration options:
43
43
 
44
44
  1. Create a Capfile with the content below:
45
45
 
46
- # Load DSL and set up stages
47
- require "capistrano/setup"
46
+ ```
47
+ # Load DSL and set up stages
48
+ require "capistrano/setup"
48
49
 
49
- # Include default deployment tasks
50
- require "capistrano/deploy"
50
+ # Include default deployment tasks
51
+ require "capistrano/deploy"
51
52
 
52
- require "capistrano/scm/git"
53
- install_plugin Capistrano::SCM::Git
53
+ require "capistrano/scm/git"
54
+ install_plugin Capistrano::SCM::Git
54
55
 
55
- require "capistrano/forkcms"
56
+ require "capistrano/forkcms"
56
57
 
57
- # Load custom tasks from `lib/capistrano/tasks` if you have any defined
58
- Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
58
+ # Load custom tasks from `lib/capistrano/tasks` if you have any defined
59
+ Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
60
+ ```
59
61
 
60
62
  2. Create a file called `config/deploy.rb`, with the content below:
61
63
 
62
- set :application, "$your-application-name"
63
- set :repo_url, "$your-repo-url"
64
+ ```
65
+ set :application, "$your-application-name"
66
+ set :repo_url, "$your-repo-url"
64
67
 
65
- set :keep_releases, 3
68
+ set :keep_releases, 3
69
+ ```
66
70
 
67
71
  3. Create a file called `config/deploy/production.rb`, with the content below:
68
72
 
69
- ... @todo, fix this
73
+ ```
74
+ ... @todo, fix this
75
+ ```
70
76
 
71
77
  4. Create a file called `config/deploy/staging.rb`, with the content below:
72
78
 
73
- server "$your-server-hostname", user: "sites", roles: %w{app db web}
74
- set :deploy_to, "$your-path-where-everything-should-be-deployed"
75
- set :document_root, "$your-document-root"
79
+ ```
80
+ server "$your-server-hostname", user: "sites", roles: %w{app db web}
81
+ set :deploy_to, "$your-path-where-everything-should-be-deployed"
82
+ set :document_root, "$your-document-root"
83
+ ```
76
84
 
77
85
 
78
86
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Forkcms
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-forkcms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tijs Verkoyen