summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/ruby.pp
blob: 2a720114f42bda4e04d70e7de9b64c62b9974b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class site_config::ruby {
  Class[Ruby] -> Class[rubygems] -> Class[bundler::install]
  class { '::ruby': ruby_version => '1.9.3' }
  class { 'bundler::install': install_method => 'package' }
  include rubygems
}


#
# Ruby settings common to all servers
#
# Why this way? So that other classes can do 'include site_ruby' without creating redeclaration errors.
# See https://puppetlabs.com/blog/modeling-class-composition-with-parameterized-classes/
#