itamae-plugin-recipe-pyenv 0.1.0 → 0.2.0

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: e9b0bf3f631ceaf8a59e675274c2fc3c2ed9d556
4
- data.tar.gz: 4ba3ef756d5ce65f80d07804ec6aff67331798e6
3
+ metadata.gz: 48b93dfc01c04777d24b4a436e83504d4fc7db45
4
+ data.tar.gz: 7bd7adaf152d572aefc52e04001de9da54fa1d7a
5
5
  SHA512:
6
- metadata.gz: 1a377d52a2fdbb32737d6e05a45d14715cc7235b33fc7926f7da41875d884a50f646520004a673e37455b1270930a3d43ebb1a3af377004d4da5f2d60f3be836
7
- data.tar.gz: f2ec170316e62b77214779855b0ec787a4ad9bacad9e4a9935594fa06c7f1a3564cdc58de7899b3ad493ea83c9528149493af87a1f0e5474c9cf04e0f4cb5d69
6
+ metadata.gz: a758634c88e2e30e606821a481aa078e1775e875725428aa635b65b132f89d4f8108104e80f3fb25d856a50705f6b09b76acd11577423be547ca533bbb04c7fe
7
+ data.tar.gz: 62e0f028f70e17a5762c8284a5222146cc5a042b10e2d2d980aeef33d5b3bd4c456825f91022f36cec028ed3326794858fcdc47861db57ac52ab641fde5e98a0
data/README.md CHANGED
@@ -36,12 +36,12 @@ You write config file:
36
36
 
37
37
  Add your itamae recipe:
38
38
  ```ruby
39
- include_recipe 'plenv::system'
39
+ include_recipe 'pyenv::system'
40
40
  ```
41
41
 
42
42
  Exec script:
43
43
  ```console
44
- $ bundle exec itamae local recipe.rb -j plenv.json
44
+ $ bundle exec itamae local recipe.rb -j pyenv.json
45
45
  ```
46
46
 
47
47
  ## Development
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{itamae plugin recipe pyenv}
13
13
  spec.description = %q{itamae plugin recipe pyenv}
14
+ spec.license = "MIT"
14
15
  spec.homepage = "https://github.com/katsyoshi/itamae-plugin-recipe-pyenv"
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -23,7 +23,7 @@ end
23
23
 
24
24
  node[:pyenv][:global].tap do |version|
25
25
  execute "pyenv global #{version}" do
26
- command "#{pyenv_init} pyenv install #{version}"
26
+ command "#{pyenv_init} pyenv global #{version}"
27
27
  not_if "#{pyenv_init} pyenv version | grep #{version}"
28
28
  end
29
29
  end
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Pyenv
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
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-pyenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - MATSUMOTO, Katsuyoshi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-23 00:00:00.000000000 Z
11
+ date: 2016-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -70,7 +70,8 @@ files:
70
70
  - lib/itamae/plugin/recipe/pyenv/system.rb
71
71
  - lib/itamae/plugin/recipe/pyenv/version.rb
72
72
  homepage: https://github.com/katsyoshi/itamae-plugin-recipe-pyenv
73
- licenses: []
73
+ licenses:
74
+ - MIT
74
75
  metadata: {}
75
76
  post_install_message:
76
77
  rdoc_options: []
@@ -88,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
89
  version: '0'
89
90
  requirements: []
90
91
  rubyforge_project:
91
- rubygems_version: 2.4.5.1
92
+ rubygems_version: 2.5.2
92
93
  signing_key:
93
94
  specification_version: 4
94
95
  summary: itamae plugin recipe pyenv