capistrano-rbenv 2.1.4 → 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/capistrano-rbenv.gemspec +1 -1
- data/lib/capistrano/tasks/rbenv.rake +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b14f551423ff1fb3a1b2f9ee74c3470542bfcf2c6603c426f23bed42bdb6cac
|
|
4
|
+
data.tar.gz: 6700678bba2f3a486bc455d5a5b823be7f19377b849ad700ccd65dacb627bd75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ead8e441aeaa411b1499a497f2b7dbe3de64991f73b9da076e5ee53438810b70c0cbd4f792ac060adbd72f0a329e7cf0c9d8002a82aec16afac4036ac9908ae
|
|
7
|
+
data.tar.gz: d236a5a2afdbee4471be915503b54a7ca570152c9345ade9a8c272b4de77518150089e3e2dc3d32db89fb50d80e29f0d23985a74a6951fb1204a6de21c723948
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* Your contribution here!
|
|
4
4
|
|
|
5
|
+
# [2.1.5][] (14 Jan 2020)
|
|
6
|
+
|
|
7
|
+
* [#88](https://github.com/capistrano/rbenv/pull/88): Fix issue with sshkit escaping `$HOME`
|
|
8
|
+
|
|
5
9
|
# [2.1.4][] (8 Sep 2018)
|
|
6
10
|
|
|
7
11
|
* [#82](https://github.com/capistrano/rbenv/pull/82): Specify MIT license in gemspec
|
|
@@ -58,7 +62,8 @@ Capistrano 3 -ready release.
|
|
|
58
62
|
Versions < 2.0 are located in another repo: https://github.com/yyuu/capistrano-rbenv
|
|
59
63
|
|
|
60
64
|
|
|
61
|
-
[master]: https://github.com/capistrano/rbenv/compare/v2.1.
|
|
65
|
+
[master]: https://github.com/capistrano/rbenv/compare/v2.1.5...HEAD
|
|
66
|
+
[2.1.5]: https://github.com/capistrano/rbenv/compare/v2.1.4...v2.1.5
|
|
62
67
|
[2.1.4]: https://github.com/capistrano/rbenv/compare/v2.1.3...v2.1.4
|
|
63
68
|
[2.1.3]: https://github.com/capistrano/rbenv/compare/v2.1.2...v2.1.3
|
|
64
69
|
[2.1.2]: https://github.com/capistrano/rbenv/compare/v2.1.1...v2.1.2
|
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.5'
|
|
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}
|
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.5
|
|
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:
|
|
12
|
+
date: 2020-01-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -92,8 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
94
|
requirements: []
|
|
95
|
-
|
|
96
|
-
rubygems_version: 2.7.7
|
|
95
|
+
rubygems_version: 3.1.2
|
|
97
96
|
signing_key:
|
|
98
97
|
specification_version: 4
|
|
99
98
|
summary: rbenv integration for Capistrano
|