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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c68411582da013a8133e3bb6e557fe9c17bc8264
4
- data.tar.gz: 86b3362772f248e88323439d429c9d364f8c7fc4
3
+ metadata.gz: bebbb5270ae49575eaa6a18fd102ec338f1bfd00
4
+ data.tar.gz: a0fd9c71886d56ea82dc2c9b982026d9e30273b7
5
5
  SHA512:
6
- metadata.gz: a0935b277ca071e1bd595be3e0f1a91e9585cd1d9cb8ba32fa4d9d1cc8d27d097e8e4f794ab47e2fc35c81ac70df07ab175b107a061a58bc9b270babcadbfc23
7
- data.tar.gz: 59e8483f107ee087f2bcab2f1af00b32d194f07d14740d88eb151c8258704aadc56b0e40d4a5faabfc62e8ec2ba5a5b1faac0267fa90639c2b38ff847e604785
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.
@@ -2,7 +2,7 @@ module Capistrano
2
2
  module Git
3
3
  module With
4
4
  module Submodules
5
- VERSION = "2.0.2"
5
+ VERSION = "2.0.3"
6
6
  end
7
7
  end
8
8
  end
@@ -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.2
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-02-02 00:00:00.000000000 Z
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.8
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+