Method: Seahorse::Client::PluginList#each

Defined in:
lib/seahorse/client/plugin_list.rb

#each(&block) ⇒ Enumerator

Enumerates the plugins.

Returns:

  • (Enumerator)


57
58
59
60
61
# File 'lib/seahorse/client/plugin_list.rb', line 57

def each(&block)
  each_plugin do |plugin_wrapper|
    yield(plugin_wrapper.plugin)
  end
end