forkcms_deploy 4.0.1 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -2
- data/VERSION +1 -1
- data/forkcms_deploy.gemspec +3 -3
- data/lib/forkcms_deploy/forkcms_3.4.rb +1 -1
- data/lib/forkcms_deploy/forkcms_3.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64dd86f192a91ff02b0fbc338bf3d2809a950bdd
|
4
|
+
data.tar.gz: d06b9122114ec4d428eebe021d7891a5b937e284
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad8085847fa6be799bf71bb02941677c99b592030f8c35c77c4588bd8dbbca53d707b2f0d7aa099b3aee36e1faf8d3af11b2653a0148ac4c66c03dec23e6dd5d
|
7
|
+
data.tar.gz: d03fd18835cc7d5c31f9e0e1b5fd1dd0bb262e7eaf269a7fdc8047250d0a0fd5c6e060c66fd119473150040451a03d3f328f8759d95ebabdf018ab337c5c7cff
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ The recipe is available in the forkcms_deploy gem, which can be installed via [R
|
|
11
11
|
* forkcms_deploy/defaults - Best practices for each deployment.
|
12
12
|
|
13
13
|
## Example recipe
|
14
|
-
This recipe will deploy the ForkCMS-instance to your-app.com.
|
14
|
+
This recipe will deploy the ForkCMS-instance to your-app.com.
|
15
15
|
|
16
16
|
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
|
17
17
|
|
@@ -26,7 +26,7 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
|
|
26
26
|
|
27
27
|
# set document_root
|
28
28
|
set :document_root, "/home/#{user}/www.your-app.com" # eg.: /home/sumocoders/default_www
|
29
|
-
|
29
|
+
|
30
30
|
# define roles
|
31
31
|
server "your-app.com", :app, :web, :db, :primary => true # eg.: crsolutions.be
|
32
32
|
|
@@ -49,3 +49,19 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
|
|
49
49
|
INSTALL
|
50
50
|
exit 1
|
51
51
|
end
|
52
|
+
|
53
|
+
# Bumping the version of this gem
|
54
|
+
|
55
|
+
1. increase the version with one of the following commands
|
56
|
+
|
57
|
+
```bash
|
58
|
+
rake version:bump:patch
|
59
|
+
rake version:bump:minor
|
60
|
+
rake version:bump:patch
|
61
|
+
```
|
62
|
+
|
63
|
+
2. release the gem
|
64
|
+
|
65
|
+
```bash
|
66
|
+
rake release
|
67
|
+
```
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.0
|
1
|
+
4.1.0
|
data/forkcms_deploy.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: forkcms_deploy 4.0
|
5
|
+
# stub: forkcms_deploy 4.1.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "forkcms_deploy"
|
9
|
-
s.version = "4.0
|
9
|
+
s.version = "4.1.0"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Tijs Verkoyen", "Jan De Poorter", "Sam Tubbax", "Wouter Sioen"]
|
14
|
-
s.date = "2016-08-
|
14
|
+
s.date = "2016-08-25"
|
15
15
|
s.description = "Deployment for ForkCMS with Capistrano"
|
16
16
|
s.email = "info@sumocoders.be"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -13,7 +13,7 @@ configuration.load do
|
|
13
13
|
composer.install_composer
|
14
14
|
run %{
|
15
15
|
cd #{latest_release} &&
|
16
|
-
php -d 'suhosin.executor.include.whitelist = phar' -d 'date.timezone = UTC' #{shared_path}/composer.phar install -o
|
16
|
+
php -d 'suhosin.executor.include.whitelist = phar' -d 'date.timezone = UTC' #{shared_path}/composer.phar install -o --no-dev
|
17
17
|
}
|
18
18
|
end
|
19
19
|
|
@@ -253,7 +253,7 @@ configuration.load do
|
|
253
253
|
desc "Clears the opcode cache"
|
254
254
|
task :clear do
|
255
255
|
run "touch #{document_root}/php-opcache-reset.php"
|
256
|
-
run "echo '<?php opcache_reset()' > #{document_root}/php-opcache-reset.php"
|
256
|
+
run "echo '<?php opcache_reset();' > #{document_root}/php-opcache-reset.php"
|
257
257
|
run %{ curl #{url}/php-opcache-reset.php }
|
258
258
|
run "rm #{document_root}/php-opcache-reset.php"
|
259
259
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forkcms_deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tijs Verkoyen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2016-08-
|
14
|
+
date: 2016-08-25 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: capistrano
|