Puppet Class: ruby::http_parser_rb
- Defined in:
- manifests/http_parser_rb.pp
Overview
Class: ruby::http_parser.rb
This module installs the http_parser.rb rubygem
Sample Usage:
include ruby::http_parser.rb
8 9 10 11 12 13 14 15 16 |
# File 'manifests/http_parser_rb.pp', line 8
class ruby::http_parser_rb {
require ruby
package {
'rubygem-http_parser.rb':
ensure => installed;
}
}
|