class RDoc::Generator::POT

def class_dir

:nodoc:
def class_dir
  nil
end

def extract_messages

def extract_messages
  extractor = MessageExtractor.new(@store)
  extractor.extract
end

def generate

def generate
  po = extract_messages
  pot_path = 'rdoc.pot'
  File.open(pot_path, "w") do |pot|
    pot.print(po.to_s)
  end
end

def initialize store, options #:not-new:

:not-new:
def initialize store, options #:not-new:
  @options    = options
  @store      = store
end