capistrano-git-with-submodules 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/capistrano/scm/git-with-submodules.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b040790efa65613fd3e21359b6b04327d5603304
|
4
|
+
data.tar.gz: 17292b414f718537d6e89c062590bfe507eda7dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 945ae451e6ea103b9b13e51efb2dc8cc2aa9d0b908c38dd001812b6802132abaccac4c518fd06e16332dc429f3b7205793567cc1003c42144d7031232501581c
|
7
|
+
data.tar.gz: cf933a4d788d0a9b56f8f6e47983711aedbaa58474d2a28ed4d8fd1f1e1219cad08da653553e4fed6becddf417b290b6ec44aeca4820503875f75ba2d26d98d4
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# capistrano-git-with-submodules [![Gem](https://img.shields.io/gem/v/capistrano-git-with-submodules.svg?maxAge=
|
1
|
+
# capistrano-git-with-submodules [![Gem](https://img.shields.io/gem/v/capistrano-git-with-submodules.svg?maxAge=21600)](https://rubygems.org/gems/capistrano-git-with-submodules) [![Gem](https://img.shields.io/gem/dt/capistrano-git-with-submodules.svg?maxAge=21600)](https://rubygems.org/gems/capistrano-git-with-submodules)
|
2
2
|
|
3
3
|
Git submodule support for Capistrano 3.7+
|
4
4
|
|
@@ -28,8 +28,8 @@ class Capistrano::SCM::Git::WithSubmodules < Capistrano::Plugin
|
|
28
28
|
quiet = Rake.application.options.trace ? '' : '--quiet'
|
29
29
|
|
30
30
|
execute :git, :reset, '--mixed', quiet, fetch(:branch)
|
31
|
-
execute :git, :submodule, 'update', '--init', '--
|
32
|
-
execute :find, release_path, "-name '.git'", "-printf 'removed %p'", "-delete"
|
31
|
+
execute :git, :submodule, 'update', '--init', '--checkout', '--recursive', quiet
|
32
|
+
execute :find, release_path, "-name '.git'", "-printf 'removed %p\\n'", "-delete"
|
33
33
|
execute :rm, "-f#{verbose}", temp_index_file_path.to_s
|
34
34
|
end if test :test, '-f', release_path.join('.gitmodules')
|
35
35
|
end
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-git-with-submodules
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris Gorbylev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '3.7'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.7'
|
27
27
|
description: Git submodules support for Capistrano 3.7+
|
@@ -32,9 +32,9 @@ extra_rdoc_files:
|
|
32
32
|
- README.md
|
33
33
|
- LICENSE
|
34
34
|
files:
|
35
|
-
- LICENSE
|
36
|
-
- README.md
|
37
35
|
- lib/capistrano/scm/git-with-submodules.rb
|
36
|
+
- README.md
|
37
|
+
- LICENSE
|
38
38
|
homepage: https://github.com/ekho/capistrano-git-with-submodules
|
39
39
|
licenses:
|
40
40
|
- MIT
|
@@ -45,17 +45,17 @@ require_paths:
|
|
45
45
|
- lib
|
46
46
|
required_ruby_version: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
|
-
- -
|
48
|
+
- - '>='
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
version: '0'
|
51
51
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- -
|
53
|
+
- - '>='
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: 1.3.6
|
56
56
|
requirements: []
|
57
57
|
rubyforge_project:
|
58
|
-
rubygems_version: 2.
|
58
|
+
rubygems_version: 2.0.14.1
|
59
59
|
signing_key:
|
60
60
|
specification_version: 4
|
61
61
|
summary: Git submodules support for Capistrano 3.7+
|