Method: Roby::Application#apply_argv_set

Defined in:
lib/roby/app.rb

#apply_argv_set(conf: Conf) ⇒ Object

Apply the –set command line parameters stored in #argv_set to a conf object



638
639
640
641
642
# File 'lib/roby/app.rb', line 638

def apply_argv_set(conf: Conf)
    argv_set.each do |value|
        self.class.apply_conf_from_argv(value, conf: conf)
    end
end