capistrano-typo3 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 67be3d0d96438f00b0c03bcea91920051b390926
4
- data.tar.gz: f2314ba40882ddf06c37a5a2a2c431d57f05bd26
2
+ SHA256:
3
+ metadata.gz: f3149ce6e92c9d14a232b343e3aaca2ff8c1c68ddbb0f74da2eaadd44398fbe1
4
+ data.tar.gz: 77501477dcb4a25a9b0f7f8babc6572aa0f985e4bc9d13edcfb8f3fd8a30584f
5
5
  SHA512:
6
- metadata.gz: b79802466debf604b69dff6a6fe0ea59b0607fe4885e8b3f173446a915d1fa671dc135d28aa2788991c2e364901f75f5f18c36243e11325f80723e9b2aeb6c85
7
- data.tar.gz: e6186356944254e77c67d47342110032481e5f5b398f724028c22167432dc1cc6e301e4d338ae99d48b72dce68fe5850e6b104a0e66bd0567dd421df89d121e5
6
+ metadata.gz: 31f64984fc9f162e91d1d4e6c81c6c3f885ea3ee283ea259fa7253f4c844c33fc1ea52cf6c8027efcbfb558e8737316b4c967182d50a9922bd162f792fda2a4d
7
+ data.tar.gz: 4ba6dda92f2f5358cb8b8a7a5ae6f6cfc736f4ba3ff8e7e9b00212e877337777deb78d06031b56323197815acc0d58c93f943dad4c055d0805d5b8464d698339
@@ -1,4 +1,9 @@
1
1
  # CHANGELOG
2
+
3
+ ## capistrano-typo3 0.5.4
4
+ - make git recursive optional
5
+
6
+
2
7
  ## capistrano-typo3 0.3.2
3
8
  - make mysql dump transfer possible on same server with different users
4
9
 
@@ -1,6 +1,7 @@
1
1
  # vim: ft=ruby:sts=2:expandtab
2
2
  # -- OVERRIDES
3
- # Save this file as lib/capistrano/tasks/git.cap
3
+
4
+ set :git_recursive_submodules, 0
4
5
  namespace :git do
5
6
 
6
7
  desc 'Copy repo to releases'
@@ -8,7 +9,11 @@ namespace :git do
8
9
  on roles(:all) do
9
10
  with fetch(:git_environmental_variables) do
10
11
  within repo_path do
11
- execute :git, :clone, '-b', fetch(:branch), '--recursive', '.', release_path
12
+ if(fetch(:git_recursive_submodules))
13
+ execute :git, :clone, '-b', fetch(:branch), '--recursive', '.', release_path
14
+ else
15
+ execute :git, :clone, '-b', fetch(:branch), '.', release_path
16
+ end
12
17
  end
13
18
  end
14
19
  end
@@ -28,5 +33,4 @@ namespace :git do
28
33
  end
29
34
  end
30
35
 
31
-
32
36
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Typo3
3
- VERSION = "0.5.3"
3
+ VERSION = "0.5.4"
4
4
  end
5
5
  end
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.5.3
4
+ version: 0.5.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: 2018-12-19 00:00:00.000000000 Z
11
+ date: 2020-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -121,8 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
123
  requirements: []
124
- rubyforge_project:
125
- rubygems_version: 2.6.14
124
+ rubygems_version: 3.0.3
126
125
  signing_key:
127
126
  specification_version: 4
128
127
  summary: Capistrano 3 tasks and CI for TYPO3