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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48b93dfc01c04777d24b4a436e83504d4fc7db45
|
|
4
|
+
data.tar.gz: 7bd7adaf152d572aefc52e04001de9da54fa1d7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 '
|
|
39
|
+
include_recipe 'pyenv::system'
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Exec script:
|
|
43
43
|
```console
|
|
44
|
-
$ bundle exec itamae local recipe.rb -j
|
|
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
|
|
26
|
+
command "#{pyenv_init} pyenv global #{version}"
|
|
27
27
|
not_if "#{pyenv_init} pyenv version | grep #{version}"
|
|
28
28
|
end
|
|
29
29
|
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.
|
|
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:
|
|
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.
|
|
92
|
+
rubygems_version: 2.5.2
|
|
92
93
|
signing_key:
|
|
93
94
|
specification_version: 4
|
|
94
95
|
summary: itamae plugin recipe pyenv
|