itamae-plugin-recipe-rbenv 0.6.4 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: edb694a320a74d6de3f8b4f84bab1100dbcd2eb9
4
- data.tar.gz: 53e7f9abf78a879753bd1c6448634b7f6a4d50d1
3
+ metadata.gz: 5e30ccc1ffb2b2cb60ccd4af5df282c12df834ff
4
+ data.tar.gz: 42f069111333d3175d503b8cfa553a8e1e192114
5
5
  SHA512:
6
- metadata.gz: 58d18f8653129c1a7cd878bc8a027501adabbab7dcbae12c9ea72fbde953d2bcffe97ff552db00e7d3f8e35a7d274914e4fb7d20564e35c0f135f94345ade049
7
- data.tar.gz: 2a67c6545adc48a7232aa82144a0faaea7e59edffbff6a22bdf28ae0bc377fb852e9fca0d5c6a64140b436029ec1bac89978938b5c22b36a29e1bf9202398e9a
6
+ metadata.gz: 29cedf1a3d3fdbe6ce62961d55460cb6311c90daa5330bcbdd46fa588bf66e17cff17e4d88ebc18dd8f98b49793747dfbdc88a5eeddca7e21ec283f939b18b3f
7
+ data.tar.gz: 1429beda3407db681abdfc832f971a9eea4c4f32e369d2181ade135924589e783c66a00733d7f19f706981ff378bb71fd5cc6e38d3607cfed77f39c66d139eb1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## v0.6.5
2
+ ### Fixed
3
+ - Support Ubuntu 18.04 [#18](https://github.com/k0kubun/itamae-plugin-recipe-rbenv/pull/18)
4
+ *Thanks to @swanmatch*
5
+
1
6
  ## v0.6.4
2
7
  ### Added
3
8
  - Suport Amazon Linux [#16](https://github.com/k0kubun/itamae-plugin-recipe-rbenv/pull/16)
@@ -6,9 +6,14 @@ when 'debian', 'ubuntu', 'mint'
6
6
  package 'build-essential'
7
7
  package 'libffi-dev'
8
8
  package 'libgdbm-dev'
9
- package 'libgdbm3'
9
+ if node[:platform_version] >= '18.04'
10
+ package 'libgdbm5'
11
+ package 'libreadline-dev'
12
+ else
13
+ package 'libgdbm3'
14
+ package 'libreadline6-dev'
15
+ end
10
16
  package 'libncurses5-dev'
11
- package 'libreadline6-dev'
12
17
  package 'libssl-dev'
13
18
  package 'libyaml-dev'
14
19
  package 'zlib1g-dev'
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Rbenv
5
- VERSION = "0.6.4"
5
+ VERSION = "0.6.5"
6
6
  end
7
7
  end
8
8
  end
data/mrblib CHANGED
@@ -1 +1 @@
1
- lib
1
+ ./lib
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-rbenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-15 00:00:00.000000000 Z
11
+ date: 2018-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  version: '0'
95
95
  requirements: []
96
96
  rubyforge_project:
97
- rubygems_version: 2.5.1
97
+ rubygems_version: 2.6.13
98
98
  signing_key:
99
99
  specification_version: 4
100
100
  summary: Itamae plugin to install ruby with rbenv