File: ruby.pp

package info (click to toggle)
puppet-module-puppetlabs-mysql 15.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 968 kB
  • sloc: ruby: 1,648; sh: 43; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# @summary
#   Private class for installing ruby language bindings
#
# @api private
#
class mysql::bindings::ruby {
  package { 'ruby_mysql':
    ensure          => $mysql::bindings::ruby_package_ensure,
    install_options => $mysql::bindings::install_options,
    name            => $mysql::bindings::ruby_package_name,
    provider        => $mysql::bindings::ruby_package_provider,
  }
}