capistrano-typo3 0.2.4 → 0.3.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.
- checksums.yaml +4 -4
- data/.codeclimate.yml +8 -0
- data/CHANGELOG.md +7 -0
- data/README.md +11 -12
- data/capistrano-typo3.gemspec +3 -3
- data/docs/homestead_nl.md +164 -0
- data/docs/install_from_scratch.md +263 -0
- data/homestead_files/Vagrantfile +193 -0
- data/homestead_files/homestead.rb +35 -0
- data/homestead_files/vagrant.yml +62 -0
- data/lib/capistrano/tasks/git.cap +7 -0
- data/lib/capistrano/tasks/typo3.cap +303 -316
- data/lib/capistrano/typo3/dt3_div.rb +52 -0
- data/lib/capistrano/typo3/dt3_mysql.rb +179 -0
- data/lib/capistrano/typo3/typo3_helper.rb +481 -0
- data/lib/capistrano/typo3/version.rb +1 -1
- data/lib/capistrano/typo3.rb +7 -0
- metadata +16 -6
data/lib/capistrano/typo3.rb
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
require "capistrano/typo3/version"
|
2
|
+
require "capistrano/typo3/typo3_helper"
|
3
|
+
require "capistrano/typo3/dt3_div"
|
4
|
+
require "capistrano/typo3/dt3_mysql"
|
2
5
|
require 'yaml' # Built in, no gem required
|
6
|
+
|
3
7
|
load File.expand_path('../tasks/typo3.cap', __FILE__)
|
4
8
|
load File.expand_path('../tasks/deploy.cap', __FILE__)
|
5
9
|
load File.expand_path('../tasks/git.cap', __FILE__)
|
10
|
+
|
11
|
+
|
12
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-typo3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pim Snel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,13 +52,15 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3'
|
55
|
-
description: Capistrano 3
|
55
|
+
description: Capistrano 3 deployment and continious delivery tasks for TYPO3 versions
|
56
|
+
6.2+, 7.x, 8.x
|
56
57
|
email:
|
57
58
|
- pim@lingewoud.nl
|
58
59
|
executables: []
|
59
60
|
extensions: []
|
60
61
|
extra_rdoc_files: []
|
61
62
|
files:
|
63
|
+
- ".codeclimate.yml"
|
62
64
|
- ".gitignore"
|
63
65
|
- CHANGELOG.md
|
64
66
|
- Gemfile
|
@@ -66,12 +68,20 @@ files:
|
|
66
68
|
- README.md
|
67
69
|
- Rakefile
|
68
70
|
- capistrano-typo3.gemspec
|
71
|
+
- docs/homestead_nl.md
|
72
|
+
- docs/install_from_scratch.md
|
73
|
+
- homestead_files/Vagrantfile
|
74
|
+
- homestead_files/homestead.rb
|
75
|
+
- homestead_files/vagrant.yml
|
69
76
|
- lib/capistrano/tasks/deploy.cap
|
70
77
|
- lib/capistrano/tasks/git.cap
|
71
78
|
- lib/capistrano/tasks/typo3.cap
|
72
79
|
- lib/capistrano/typo3.rb
|
80
|
+
- lib/capistrano/typo3/dt3_div.rb
|
81
|
+
- lib/capistrano/typo3/dt3_mysql.rb
|
82
|
+
- lib/capistrano/typo3/typo3_helper.rb
|
73
83
|
- lib/capistrano/typo3/version.rb
|
74
|
-
homepage: https://github.com/
|
84
|
+
homepage: https://github.com/t3labcom/capistrano-typo3
|
75
85
|
licenses:
|
76
86
|
- MIT
|
77
87
|
metadata: {}
|
@@ -91,8 +101,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
101
|
version: '0'
|
92
102
|
requirements: []
|
93
103
|
rubyforge_project:
|
94
|
-
rubygems_version: 2.4.
|
104
|
+
rubygems_version: 2.4.8
|
95
105
|
signing_key:
|
96
106
|
specification_version: 4
|
97
|
-
summary: Capistrano 3 tasks for TYPO3
|
107
|
+
summary: Capistrano 3 tasks and CI for TYPO3
|
98
108
|
test_files: []
|