class Syskit::GUI::BatchManager::NewJobDialog::Parser

Public Class Methods

const_missing(const_name) click to toggle source
# File lib/syskit/gui/batch_manager.rb, line 197
def self.const_missing(const_name)
    ::Object.const_get(const_name)
end
parse(text) click to toggle source
# File lib/syskit/gui/batch_manager.rb, line 201
def self.parse(text)
    parser = new
    parser.instance_eval(text)
    parser.__result
end

Public Instance Methods

__result() click to toggle source
# File lib/syskit/gui/batch_manager.rb, line 212
def __result
    return @method_name, @method_options
end
method_missing(m, **options) click to toggle source
# File lib/syskit/gui/batch_manager.rb, line 207
def method_missing(m, **options)
    @method_name = m[0..-2]
    @method_options = options
end