forkcms_deploy 4.4.2 → 4.4.3
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 +4 -4
- data/VERSION +1 -1
- data/forkcms_deploy.gemspec +4 -4
- data/lib/forkcms_deploy/forkcms_3.rb +1 -13
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4249221c9e0cd6faade54f7f22c79e38232893b7
|
|
4
|
+
data.tar.gz: 9db69826319aa6cb498bac3e183e452533013969
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64e89f440a0b553cd2298704f04b2ef328900dac3b2337fc5ecade8a0d4315c1f33d90189992c337078d8941469b24659038d9a51b85ca836c8dec2fc3f61d8c
|
|
7
|
+
data.tar.gz: 5f0b4c91f0e50e7ea1f8983a54bf410a18be6e770556b0c4e9b696d116809ba5db1eaa27e3789433f7beb776e843efe1ae2d936a56e622ed319af8218578b9df
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.4.
|
|
1
|
+
4.4.3
|
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.4.
|
|
5
|
+
# stub: forkcms_deploy 4.4.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "forkcms_deploy".freeze
|
|
9
|
-
s.version = "4.4.
|
|
9
|
+
s.version = "4.4.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Tijs Verkoyen".freeze, "Jan De Poorter".freeze, "Sam Tubbax".freeze, "Wouter Sioen".freeze]
|
|
14
|
-
s.date = "2016-12-
|
|
14
|
+
s.date = "2016-12-28"
|
|
15
15
|
s.description = "Deployment for ForkCMS with Capistrano".freeze
|
|
16
16
|
s.email = "info@sumocoders.be".freeze
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -42,7 +42,7 @@ Gem::Specification.new do |s|
|
|
|
42
42
|
]
|
|
43
43
|
s.homepage = "https://github.com/sumocoders/forkcms_deploy".freeze
|
|
44
44
|
s.licenses = ["MIT".freeze]
|
|
45
|
-
s.rubygems_version = "2.
|
|
45
|
+
s.rubygems_version = "2.6.7".freeze
|
|
46
46
|
s.summary = "Deployment for ForkCMS with Capistrano".freeze
|
|
47
47
|
|
|
48
48
|
if s.respond_to? :specification_version then
|
|
@@ -4,7 +4,7 @@ configuration = Capistrano::Configuration.respond_to?(:instance) ? Capistrano::C
|
|
|
4
4
|
|
|
5
5
|
configuration.load do
|
|
6
6
|
# define some extra folder to create
|
|
7
|
-
set :shared_children, %w(files config/frontend config/backend config/library
|
|
7
|
+
set :shared_children, %w(files config/frontend config/backend config/library)
|
|
8
8
|
|
|
9
9
|
# custom events configuration
|
|
10
10
|
after 'deploy:setup' do
|
|
@@ -14,7 +14,6 @@ configuration.load do
|
|
|
14
14
|
|
|
15
15
|
after 'deploy:update_code' do
|
|
16
16
|
forkcms.link_configs
|
|
17
|
-
forkcms.link_sessions
|
|
18
17
|
forkcms.link_files
|
|
19
18
|
end
|
|
20
19
|
|
|
@@ -88,17 +87,6 @@ configuration.load do
|
|
|
88
87
|
}
|
|
89
88
|
end
|
|
90
89
|
|
|
91
|
-
desc 'Link the session files'
|
|
92
|
-
task :link_sessions do
|
|
93
|
-
|
|
94
|
-
run %{
|
|
95
|
-
mkdir -p #{shared_path}/sessions &&
|
|
96
|
-
cp -r #{release_path}/app/sessions #{shared_path}/ &&
|
|
97
|
-
rm -rf #{release_path}/app/sessions &&
|
|
98
|
-
ln -s #{shared_path}/sessions #{release_path}/app/sessions
|
|
99
|
-
}
|
|
100
|
-
end
|
|
101
|
-
|
|
102
90
|
desc 'link the document root to the current/default_www-folder'
|
|
103
91
|
task :link_document_root do
|
|
104
92
|
# create symlink for document_root if it doesn't exists
|
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.4.
|
|
4
|
+
version: 4.4.3
|
|
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-12-
|
|
14
|
+
date: 2016-12-28 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: jeweler
|
|
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
91
|
rubyforge_project:
|
|
92
|
-
rubygems_version: 2.
|
|
92
|
+
rubygems_version: 2.6.7
|
|
93
93
|
signing_key:
|
|
94
94
|
specification_version: 4
|
|
95
95
|
summary: Deployment for ForkCMS with Capistrano
|