I have a Puppet class "Ruby":
# init.pp
class ruby {
package { 'libldap-ruby1.8':
ensure => 'installed'
}
}
Then I have a class written in Puppet Ruby DSL, which should inherit this Puppet-class:
# ldap.rb
hostclass 'ruby::ldap' do
(...)
end
How do I define that ruby::ldap inherits ruby?
Unfortunately, the Puppet developers on Google Groups do not answer any related questions (link1, link2).