This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
generate()
public
Writes .pot to disk.
# File lib/rdoc/generator/pot.rb, line 75
def generate
po = extract_messages
pot_path = 'rdoc.pot'
File.open(pot_path, "w") do |pot|
pot.print(po.to_s)
end
end