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 +4 -4
- data/CHANGELOG.md +6 -1
- data/capistrano-rbenv.gemspec +1 -1
- data/lib/capistrano/tasks/rbenv.rake +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8d5d6e571173fb0b73a909418ef81c4770c6943
|
4
|
+
data.tar.gz: 3ae3ef924e849cc8b9d0e807ccef267e87095df5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c44484d8b9e1c77eb485a6f83f9d0cf4a3303ed775993d044e006c927046140f4802a147ecc172c23ee457cc31af98bd75cd310bec177c66fffc4bb832233ac0
|
7
|
+
data.tar.gz: dd7368c763083bcb19587d60654326fc60f48313156e7a08b9c6a9429ad151cf2dd6b81765481b7e3589a331fb91f8df92619c6d78f75c8843098370a203bd45
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
data/capistrano-rbenv.gemspec
CHANGED
@@ -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.
|
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.
|
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-
|
12
|
+
date: 2017-11-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|