summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/ruby.pp
blob: 9c00503212e82ab6e46d13c1ec5dce9b4363900e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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/
#