itamae-plugin-recipe-docker 0.2.2 → 0.2.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
- SHA1:
3
- metadata.gz: 83c0f25b957f1a1c3438d0841e089b502a63d756
4
- data.tar.gz: 938e671d950070286868aeb11427c63b3ac26293
2
+ SHA256:
3
+ metadata.gz: 72dd1aba9afe77c98665da5b886beef45e84f934855af02bc8683bd7719814a7
4
+ data.tar.gz: 06204cbc067c712f834f42a4967587e7275ddf3b91e37583c06254dde09db932
5
5
  SHA512:
6
- metadata.gz: d65625a810e132376a7d7419a1445365e635ef94db5120822f22fce80ffc3cab20e3c75872da15bed65ec86943cfd04f5c1c20d677b92359dcdfa143b3874a47
7
- data.tar.gz: 95afd3ec92ed4b18cb73ad67d1eaf01865be59e0d17cdd9b13c57e2fbb6fb2558a26260b01afe3d41b13c22e1329ad5814bda7b2af2a1efbfba6c580c49eb304
6
+ metadata.gz: 46d3878436b4c61386437e90f32e4511e73e0b1daaf27a7031b9159886fc29b2082252f143910416bcc160edf14062e2d8939a26bbe398a252c419eab2d41381
7
+ data.tar.gz: 79547faea384fbf1a2453c9ac8b1b66484ccd57759c645f3e9523de3027f746fd33da73a71629d335df8b59bba486aced90a989383a632c4595a2adf298cae1a
@@ -0,0 +1,34 @@
1
+ # Change Log
2
+
3
+ ## [v0.2.2](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.2) (2016-05-07)
4
+ [Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.2.1...v0.2.2)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Support Debian Jessie. [\#4](https://github.com/k0kubun/itamae-plugin-recipe-docker/pull/4) ([nishidayuya](https://github.com/nishidayuya))
9
+
10
+ ## [v0.2.1](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.1) (2016-05-02)
11
+ [Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.2.0...v0.2.1)
12
+
13
+ **Closed issues:**
14
+
15
+ - not work `docker::install` [\#2](https://github.com/k0kubun/itamae-plugin-recipe-docker/issues/2)
16
+
17
+ **Merged pull requests:**
18
+
19
+ - Remove calling 'apt-get update'. [\#3](https://github.com/k0kubun/itamae-plugin-recipe-docker/pull/3) ([nishidayuya](https://github.com/nishidayuya))
20
+
21
+ ## [v0.2.0](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.0) (2016-02-06)
22
+ [Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.1.1...v0.2.0)
23
+
24
+ **Closed issues:**
25
+
26
+ - Suggestion about `docker` group to use docker client without sudo. [\#1](https://github.com/k0kubun/itamae-plugin-recipe-docker/issues/1)
27
+
28
+ ## [v0.1.1](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.1.1) (2015-09-25)
29
+ [Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.1.0...v0.1.1)
30
+
31
+ ## [v0.1.0](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.1.0) (2015-09-25)
32
+
33
+
34
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -55,6 +55,9 @@ when 'fedora', 'redhat' # and centos
55
55
 
56
56
  package 'docker-engine'
57
57
 
58
+ when 'amazon'
59
+ package 'docker'
60
+
58
61
  when 'gentoo'
59
62
  execute 'emerge -av app-emulation/docker' do
60
63
  not_if 'which docker'
@@ -75,7 +78,7 @@ when 'ubuntu'
75
78
  end
76
79
 
77
80
  else
78
- require 'itamae/plugin/recipe/version'
81
+ require_relative './version'
79
82
  abort "'#{node[:platform]}' is not supported by v#{Itamae::Plugin::Recipe::Docker::VERSION} of itamae-plugin-recipe-docker."
80
83
  end
81
84
 
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Docker
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.3"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-docker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-07 00:00:00.000000000 Z
11
+ date: 2018-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -75,6 +75,7 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
77
  - ".travis.yml"
78
+ - CHANGELOG.md
78
79
  - Gemfile
79
80
  - README.md
80
81
  - Rakefile
@@ -104,9 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
105
  version: '0'
105
106
  requirements: []
106
107
  rubyforge_project:
107
- rubygems_version: 2.5.1
108
+ rubygems_version: 2.7.3
108
109
  signing_key:
109
110
  specification_version: 4
110
111
  summary: Itamae recipe plugin to install Docker.
111
112
  test_files: []
112
- has_rdoc: