Method: Seahorse::Client::PluginList#set
- Defined in:
- lib/seahorse/client/plugin_list.rb
#set(plugins) ⇒ void
This method returns an undefined value.
Replaces the existing list of plugins.
45 46 47 48 49 50 51 52 53 |
# File 'lib/seahorse/client/plugin_list.rb', line 45 def set(plugins) @mutex.synchronize do @plugins.clear plugins.each do |plugin| _add(plugin) end end nil end |