serverkit-rbenv 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 87784b160b57127a4d2433d151bede961f7b2d10
4
+ data.tar.gz: 097b2204f74b98b423eeeb176c2971006a5989c8
5
+ SHA512:
6
+ metadata.gz: c3f092cd7c9dd58de9847ec8be1a7203701c5de9a973832f3fb1260521949bfe97e799098631a97698e56f0faccd79b114c539b4cc44ffba444161c3dfa05b67
7
+ data.tar.gz: 0fbce9d8e93c0eff65e025f0d16b6120262be1f993ee2fdefe5344125d548b06eb181a50a94e862d2ab45a614890aae25b4313edd28474a9ba1ca0d3f770c005
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in serverkit-rbenv.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Ryo Nakamura
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # serverkit-rbenv
2
+ [Serverkit](https://github.com/r7kamura/serverkit) plug-in for [rbenv](https://github.com/sstephenson/rbenv).
3
+
4
+ ## Resource
5
+ ### rbenv_ruby
6
+ Install specified version of Ruby with rbenv.
7
+
8
+ #### Attributes
9
+ - version - Installed Ruby version (required) (e.g. `"2.2.0"`)
10
+ - global - Pass true to make it global (default: `false`)
11
+ - rbenv_executable_path - Path to rbenv executable (default: `"rbenv"`)
12
+
13
+ #### Example
14
+ ```yml
15
+ resources:
16
+ - id: install_ruby
17
+ type: rbenv_ruby
18
+ version: 2.2.0
19
+ global: true
20
+ ```
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "serverkit/rbenv"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,2 @@
1
+ require "serverkit/rbenv/version"
2
+ require "serverkit/resources/rbenv_ruby"
@@ -0,0 +1,5 @@
1
+ module Serverkit
2
+ module Rbenv
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,62 @@
1
+ module Serverkit
2
+ module Resources
3
+ class RbenvRuby < Base
4
+ DEFAULT_GLOBAL = false
5
+ DEFAULT_RBENV_EXECUTABLE_PATH = "rbenv"
6
+
7
+ attribute :global, default: DEFAULT_GLOBAL, type: [FalseClass, TrueClass]
8
+ attribute :rbenv_executable_path, default: DEFAULT_RBENV_EXECUTABLE_PATH, type: String
9
+ attribute :version, required: true, type: String
10
+
11
+ # Install the specified version of Ruby with rbenv if rbenv is executable
12
+ # @note Override
13
+ def apply
14
+ if has_rbenv?
15
+ install_specified_ruby_version unless has_specified_ruby_version?
16
+ set_specified_global_version if has_invalid_global_version?
17
+ end
18
+ end
19
+
20
+ # Check if rbenv is executable and the specified version of Ruby is installed
21
+ # @note Override
22
+ # @return [true, false] True if the specified version of Ruby is installed
23
+ def check
24
+ has_rbenv? && has_specified_ruby_version? && !has_invalid_global_version?
25
+ end
26
+
27
+ private
28
+
29
+ # @note Override
30
+ def default_id
31
+ version
32
+ end
33
+
34
+ def global_version
35
+ run_command("#{rbenv_executable_path} global").stdout.rstrip
36
+ end
37
+
38
+ # @return [true, false] True if global attribute is specified and it differs from current global
39
+ def has_invalid_global_version?
40
+ !global.nil? && global_version != version
41
+ end
42
+
43
+ # @return [true, false] True if rbenv command is executable
44
+ def has_rbenv?
45
+ check_command("which #{rbenv_executable_path}")
46
+ end
47
+
48
+ # @return [true, false] True if the specified version of Ruby is installed
49
+ def has_specified_ruby_version?
50
+ check_command("#{rbenv_executable_path} prefix #{version}")
51
+ end
52
+
53
+ def install_specified_ruby_version
54
+ run_command("#{rbenv_executable_path} install #{version}")
55
+ end
56
+
57
+ def set_specified_global_version
58
+ run_command("#{rbenv_executable_path} global #{version}")
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,21 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "serverkit/rbenv/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "serverkit-rbenv"
7
+ spec.version = Serverkit::Rbenv::VERSION
8
+ spec.authors = ["Ryo Nakamura"]
9
+ spec.email = ["r7kamura@gmail.com"]
10
+ spec.summary = "Serverkit plug-in for rbenv"
11
+ spec.homepage = "https://github.com/r7kamura/serverkit-rbenv"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
15
+ spec.bindir = "exe"
16
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.9"
20
+ spec.add_development_dependency "rake", "~> 10.0"
21
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: serverkit-rbenv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ryo Nakamura
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-04-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description:
42
+ email:
43
+ - r7kamura@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/serverkit/rbenv.rb
56
+ - lib/serverkit/rbenv/version.rb
57
+ - lib/serverkit/resources/rbenv_ruby.rb
58
+ - serverkit-rbenv.gemspec
59
+ homepage: https://github.com/r7kamura/serverkit-rbenv
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.4.5
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: Serverkit plug-in for rbenv
83
+ test_files: []
84
+ has_rdoc: