Puppet Class: ruby::simple_oauth

Defined in:
manifests/simple_oauth.pp

Overview

Class: ruby::simple_oauth

This module installs the simple_oauth rubygem

Sample Usage:

include ruby::simple_oauth


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

class ruby::simple_oauth {

  require ruby

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