Method: Generators::PuppetGenerator.for

Defined in:
lib/puppet/util/rdoc/generators/puppet_generator.rb

.for(options) ⇒ Object



55
56
57
58
59
60
61
62
63
64
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 55

def self.for(options)
  AllReferences.reset
  HtmlMethod.reset

  if options.all_one_file
    PuppetGeneratorInOne.new(options)
  else
    PuppetGenerator.new(options)
  end
end