Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

rbenv-install-rubies (2) Versions 0.2.0

Install ruby by using rbenv

Policyfile
Berkshelf
Knife
cookbook 'rbenv-install-rubies', '= 0.2.0', :supermarket
cookbook 'rbenv-install-rubies', '= 0.2.0'
knife supermarket install rbenv-install-rubies
knife supermarket download rbenv-install-rubies
README
Dependencies
Quality -%

Chef cookbook of ruby install by rbenv. Can specify ruby versions into node attributes.

Depends

Recipes

default

Install rubyies that specified in node attributes.

keep-group-write

To keep group write of rbenv versions directory for installing gems by rbenv group user.

Attributes

Global ruby version.

node.default[:rbenv_install_rubies][:global_version] = '2.0.0-p247'

List of other versions.

node.default[:rbenv_install_rubies][:other_versions] = []

List of preinstalled gems for rubies.

node.default[:rbenv_install_rubies][:gems] = ['bundler', 'rbenv-rehash', 'pry']

List of OS package names that is required by compiling ruby and some gems.

node.default[:rbenv_install_rubies][:lib_packages] = []

Sample json

Just install rubies

{
  "run_list": [
    "recipe[rbenv-install-rubies]"
  ],
  "rbenv-install-rubies": {
    "global_version": "2.0.0-p247",
    "other_versions": ["1.9.3-p448"],
    "gems": ["bundler", "rbenv-rehash", "pry", {"nokogiri" => {"version" => "1.5.10"}}],
    "lib_packages": ["libxml2-devel", "libxslt-devel"]
  }
}

With keep group write feature

{
  "run_list": [
    "recipe[rbenv-install-rubies]"
    "recipe[rbenv-install-rubies::keep-group-write]"
  ],
  "rbenv": {
   "group_users": ["john", "mike"]
  ],
  "rbenv-install-rubies": {
    "global_version": "2.0.0-p247",
    "other_versions": ["1.9.3-p448"],
    "gems": ["bundler", "rbenv-rehash", "pry", {"nokogiri" => {"version" => "1.5.10"}}],
    "lib_packages": ["libxml2-devel", "libxslt-devel"]
  }
}

Specs

This cookbook is tested by below things.

How to run specs

$ git clone https://github.com/akahigeg/rbenv-install-rubies-cookbook.git
$ cd rbenv-install-rubies-cookbook
$ vagrant up
$ bundle install
$ bundle exec rake spec

Dependent cookbooks

rbenv >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found