Puppet Class: ruby::httparty

Defined in:
manifests/httparty.pp

Overview

Class: ruby::httparty

This module installs the httparty rubygem

Sample Usage:

include ruby::httparty


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

class ruby::httparty {

  require ruby

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