mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
20 lines
325 B
Ruby
20 lines
325 B
Ruby
|
|
||
|
class PluginManagerHelper
|
||
|
|
||
|
def include?(plugins, name)
|
||
|
include = false
|
||
|
plugins.each do |plugin|
|
||
|
if (plugin.name == name)
|
||
|
include = true
|
||
|
break
|
||
|
end
|
||
|
end
|
||
|
return include
|
||
|
end
|
||
|
|
||
|
def instantiate_plugin_script(plugin, system_objects, name)
|
||
|
return eval("#{plugin}.new(system_objects, name)")
|
||
|
end
|
||
|
|
||
|
end
|