Puppet Class: ruby::riak_client
- Defined in:
- manifests/riak_client.pp
Overview
Class: ruby::riak_client
This module installs the riak-client rubygem
Sample Usage:
include ruby::riak_client
8 9 10 11 12 13 14 15 16 |
# File 'manifests/riak_client.pp', line 8
class ruby::riak_client {
require ruby
package {
'rubygem-riak-client':
ensure => installed;
}
}
|