Home

Awesome

Poise-Ruby Cookbook

Build Status Gem Version Cookbook Version Coverage Gemnasium License

A Chef cookbook to provide a unified interface for installing Ruby and running things with it. This README covers the 2.x version of the cookbook, the 1.x version is very different and no longer supported.

Quick Start

To install the latest available version of Ruby 2.x and then use it to install some gems:

ruby_runtime '2'

ruby_gem 'rake'

bundle_install '/path/to/Gemfile' do
  without 'development'
  deployment true
end

Requirements

Chef 12.1 or newer is required.

Attributes

Attributes are used to configure the default recipe.

Recipes

default

The default recipe installs Ruby based on the node attributes. It is entirely optional and can be ignored in favor of direct use of the ruby_runtime resource.

Resources

ruby_runtime

The ruby_runtime resource installs a Ruby interpreter.

ruby_runtime 'any' do
  version ''
end

Actions

Properties

Provider Options

The poise-ruby library offers an additional way to pass configuration information to the final provider called "options". Options are key/value pairs that are passed down to the ruby_runtime provider and can be used to control how it installs Ruby. These can be set in the ruby_runtime resource using the options method, in node attributes or via the ruby_runtime_options resource. The options from all sources are merged together in to a single hash.

When setting options in the resource you can either set them for all providers:

ruby_runtime 'myapp' do
  version '2.1'
  options dev_package: false
end

or for a single provider:

ruby_runtime 'myapp' do
  version '2.1'
  options :system, dev_package: false
end

Setting via node attributes is generally how an end-user or application cookbook will set options to customize installations in the library cookbooks they are using. You can set options for all installations or for a single runtime:

# Global, for all installations.
override['poise-ruby']['options']['dev_package'] = false
# Single installation.
override['poise-ruby']['myapp']['version'] = '2.2'

The ruby_runtime_options resource is also available to set node attributes for a specific installation in a DSL-friendly way:

ruby_runtime_options 'myapp' do
  version '2.2'
end

Unlike resource attributes, provider options can be different for each provider. Not all providers support the same options so make sure to the check the documentation for each provider to see what options the use.

ruby_runtime_options

The ruby_runtime_options resource allows setting provider options in a DSL-friendly way. See the Provider Options section for more information about provider options overall.

ruby_runtime_options 'myapp' do
  version '2.2'
end

Actions

Properties

All other property keys will be used as options data.

ruby_execute

The ruby_execute resource executes a Ruby script using the configured runtime.

ruby_execute 'myapp.rb' do
  user 'myuser'
end

This uses the built-in execute resource and supports all the same properties.

Actions

Properties

For other properties see the Chef documentation.

ruby_gem

The ruby_gem resource is a subclass of the standard gem_package resource to install the gem with the configured runtime.

ruby_gem 'rake' do
  version ' 10.4.2'
end

All actions and attributes match the standard gem_package resource with the addition of a ruby attribute matching ruby_execute.

bundle_install

The bundle_install resource installs gems based on a Gemfile using bundler.

bundle_install '/path/to/Gemfile' do
  deployment true
  jobs 3
end

The underlying bundle command will run on every converge, but notifications will only be triggered if a gem is actually installed.

Actions

Properties

Ruby Providers

system

The system provider installs Ruby using system packages. This is currently only tested on platforms using apt-get and yum (Debian, Ubuntu, RHEL, CentOS Amazon Linux, and Fedora) and is the default provider on those platforms. It may work on other platforms but is untested.

ruby_runtime 'myapp' do
  provider :system
  version '2.1'
end

Options

scl

The scl provider installs Ruby using the Software Collections packages. This is only available on RHEL and CentOS. SCL offers more recent versions of Ruby than the system packages for the most part. If an SCL package exists for the requested version, it will be used in preference to the system provider.

ruby_runtime 'myapp' do
  provider :scl
  version '2.2'
end

chef

The chef provider uses the Ruby environment included in the Omnibus packages. Great care should be taken when using this provider.

ruby_runtime 'myapp' do
  provider :chef
  version '2.1'
end

Options

ruby_build

The ruby_build provider uses ruby-build to compile and install Ruby. It can be found in the poise-ruby-build cookbook.

Sponsors

Development sponsored by Bloomberg.

The Poise test server infrastructure is sponsored by Rackspace.

License

Copyright 2015-2017, Noah Kantrowitz

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.