Class: PuppetStrings::Yard::CodeObjects::Providers
Overview
Implements the group for Puppet providers.
Class Method Summary collapse
-
.instance(type) ⇒ Object
Gets the singleton instance of the group.
Instance Method Summary collapse
-
#name(prefix = false) ⇒ String
Gets the display name of the group.
Methods inherited from Group
Methods inherited from Base
Class Method Details
.instance(type) ⇒ Object
Gets the singleton instance of the group.
8 9 10 |
# File 'lib/puppet-strings/yard/code_objects/provider.rb', line 8 def self.instance(type) super("puppet_providers_#{type}".intern) end |
Instance Method Details
#name(prefix = false) ⇒ String
Gets the display name of the group.
15 16 17 |
# File 'lib/puppet-strings/yard/code_objects/provider.rb', line 15 def name(prefix = false) 'Providers' end |