capistrano-git-with-submodules 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/capistrano-git-with-submodules/version.rb +1 -1
- data/lib/capistrano/scm/git-with-submodules.rb +1 -1
- 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: bebbb5270ae49575eaa6a18fd102ec338f1bfd00
|
4
|
+
data.tar.gz: a0fd9c71886d56ea82dc2c9b982026d9e30273b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d95e1e2e03fd89bbd6256953a422d32ea3dcebcbde6596ceb9a09f8bd2a2272f45e4446e6e4ab7ad250eb14e50b330d39976ddec58541e8af7e4974621b5fdb
|
7
|
+
data.tar.gz: b6afffbf120fd3636a8e88eb3702a70f3a920f7864dac55245519babd87995f7783349a816db63bc7017a1779a0406c8e1d8f9b5fc85e4da0e14932c5104d81d
|
data/README.md
CHANGED
@@ -29,6 +29,8 @@ require "capistrano/scm/git-with-submodules"
|
|
29
29
|
install_plugin Capistrano::SCM::Git::WithSubmodules
|
30
30
|
```
|
31
31
|
|
32
|
+
> If you are upgrading from [`capistrano-git-submodule-strategy`](https://github.com/ekho/capistrano-git-submodule-strategy#using) you should remove its settings from your `Gemfile`, `Capfile` and `deploy.rb`.
|
33
|
+
|
32
34
|
## Contributing to capistrano-git-with-submodules
|
33
35
|
|
34
36
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
@@ -27,7 +27,7 @@ class Capistrano::SCM::Git::WithSubmodules < Capistrano::Plugin
|
|
27
27
|
verbose = Rake.application.options.trace ? 'v' : ''
|
28
28
|
quiet = Rake.application.options.trace ? '' : '--quiet'
|
29
29
|
|
30
|
-
execute :git, :reset, '--mixed', quiet, fetch(:branch)
|
30
|
+
execute :git, :reset, '--mixed', quiet, fetch(:branch), '--'
|
31
31
|
execute :git, :submodule, 'update', '--init', '--checkout', '--recursive', quiet
|
32
32
|
execute :find, release_path, "-name '.git'", "|", "xargs -I {} rm -rf#{verbose} '{}'"
|
33
33
|
execute :rm, "-f#{verbose}", temp_index_file_path.to_s
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris Gorbylev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
57
|
version: 1.3.6
|
58
58
|
requirements: []
|
59
59
|
rubyforge_project:
|
60
|
-
rubygems_version: 2.6.
|
60
|
+
rubygems_version: 2.6.11
|
61
61
|
signing_key:
|
62
62
|
specification_version: 4
|
63
63
|
summary: Git submodules support for Capistrano 3.7+
|