Puppet Class: ruby::carrot_top

Defined in:
manifests/carrot_top.pp

Overview

Class: ruby::carrot_top

This module installs the carrot-top rubygem

Sample Usage:

include ruby::carrot_top


8
9
10
11
12
13
14
15
16
# File 'manifests/carrot_top.pp', line 8

class ruby::carrot_top {

  require ruby

  package {
    'rubygem-carrot-top':
      ensure    => installed;
  }
}