Plugin holds a native puppet plugin (function,type…) It is mapped to a HTMLPuppetPlugin for display
# File lib/puppet/util/rdoc/code_objects.rb, line 247 def <=>(other) @name <=> other.name end
# File lib/puppet/util/rdoc/code_objects.rb, line 251 def full_name @name end
# File lib/puppet/util/rdoc/code_objects.rb, line 255 def http_url(prefix) path = full_name.split("::") File.join(prefix, *path) + ".html" end
# File lib/puppet/util/rdoc/code_objects.rb, line 260 def is_fact? false end
# File lib/puppet/util/rdoc/code_objects.rb, line 264 def to_s res = self.class.name + ": #{@name} (#{@type})\n" res << @comment.to_s res end
# File lib/puppet/util/rdoc/code_objects.rb, line 240 def initialize(name, type) super() @name = name @type = type @comment = "" end