Method: Roby::Application#each_responding_plugin

Defined in:
lib/roby/app.rb

#each_responding_plugin(method, _on_available = false) ⇒ Object

Yields each plugin object that respond to method



1405
1406
1407
1408
1409
# File 'lib/roby/app.rb', line 1405

def each_responding_plugin(method, _on_available = false)
    each_plugin do |mod|
        yield(mod) if mod.respond_to?(method)
    end
end