Basic cookbook to install ruby from src on Ubuntu 12.04 LTS
Only tested on Ubuntu 12.04, but since compiling from src it should work on other platforms.
Depends on build-essential
cookbook distributed by Opscode.
Key | Type | Description |
---|---|---|
['ruby']['version'] | String | name fo the ruby version to be installed |
['ruby']['checksum'] | String | sha256 checksum of the .tar.gz source bundle |
Just include ruby-src
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[ruby-src]"
]
}
Authors: Scott Klein scott@statuspage.io