capistrano-rbenv 2.1.2 → 2.1.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: d46c1f8e2f4ff5b02639594c65ceb59748f91e29
4
- data.tar.gz: 7c6ea20fc2d497d01e2592729ddf165ecdcc9388
3
+ metadata.gz: d8d5d6e571173fb0b73a909418ef81c4770c6943
4
+ data.tar.gz: 3ae3ef924e849cc8b9d0e807ccef267e87095df5
5
5
  SHA512:
6
- metadata.gz: 10586deb600dc466f73de4b96f94479734cac20d4372351318fb7fa8bf21c036ffde1bfac62af7bdce6b441439eac264d65d6ff474afcae139efbb2c21b780bb
7
- data.tar.gz: 10c48cd8742d3582963409890ecc19e316e186ce5c27a07bd732e90bf8882d8442b2c7c0636c684187ac2d3e9c29a2e750482ce7efaad78195bdfed5c57685e5
6
+ metadata.gz: c44484d8b9e1c77eb485a6f83f9d0cf4a3303ed775993d044e006c927046140f4802a147ecc172c23ee457cc31af98bd75cd310bec177c66fffc4bb832233ac0
7
+ data.tar.gz: dd7368c763083bcb19587d60654326fc60f48313156e7a08b9c6a9429ad151cf2dd6b81765481b7e3589a331fb91f8df92619c6d78f75c8843098370a203bd45
@@ -2,6 +2,10 @@
2
2
 
3
3
  * Your contribution here!
4
4
 
5
+ # [2.1.3][] (11 Nov 2017)
6
+
7
+ * [#75](https://github.com/capistrano/rbenv/pull/75): Enforce uniqueness of rbenv_map_bins.
8
+
5
9
  # [2.1.2][] (29 Sep 2017)
6
10
 
7
11
  * [#74](https://github.com/capistrano/rbenv/pull/74): Clarify the location where the ruby is missing - [@creitve](https://github.com/creitve)
@@ -50,7 +54,8 @@ Capistrano 3 -ready release.
50
54
  Versions < 2.0 are located in another repo: https://github.com/yyuu/capistrano-rbenv
51
55
 
52
56
 
53
- [master]: https://github.com/capistrano/rbenv/compare/v2.1.2...HEAD
57
+ [master]: https://github.com/capistrano/rbenv/compare/v2.1.3...HEAD
58
+ [2.1.3]: https://github.com/capistrano/rbenv/compare/v2.1.2...v2.1.3
54
59
  [2.1.2]: https://github.com/capistrano/rbenv/compare/v2.1.1...v2.1.2
55
60
  [2.1.1]: https://github.com/capistrano/rbenv/compare/v2.1.0...v2.1.1
56
61
  [2.1.0]: https://github.com/capistrano/rbenv/compare/v2.0.4...v2.1.0
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "capistrano-rbenv"
7
- gem.version = '2.1.2'
7
+ gem.version = '2.1.3'
8
8
  gem.authors = ["Kir Shatrov", "Yamashita Yuu"]
9
9
  gem.email = ["shatrov@me.com", "yamashita@geishatokyo.com"]
10
10
  gem.description = %q{rbenv integration for Capistrano}
@@ -19,7 +19,7 @@ namespace :rbenv do
19
19
  rbenv_prefix = fetch(:rbenv_prefix, proc { "#{fetch(:rbenv_path)}/bin/rbenv exec" })
20
20
  SSHKit.config.command_map[:rbenv] = "#{fetch(:rbenv_path)}/bin/rbenv"
21
21
 
22
- fetch(:rbenv_map_bins).each do |command|
22
+ fetch(:rbenv_map_bins).uniq.each do |command|
23
23
  SSHKit.config.command_map.prefix[command.to_sym].unshift(rbenv_prefix)
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-rbenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kir Shatrov
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-09-29 00:00:00.000000000 Z
12
+ date: 2017-11-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano