class GetText::GladeParser

Constants

GLADE_RE
TARGET1
TARGET2
XML_RE

Public Class Methods

new(path, options={}) click to toggle source
# File lib/gettext/tools/parser/glade.rb, line 49
def initialize(path, options={})
  @path = path
  @options = options
end
parse(path, options={}) click to toggle source
# File lib/gettext/tools/parser/glade.rb, line 40
def parse(path, options={})
  parser = new(path, options)
  parser.parse
end