Class: Avo::PluginManager
- Inherits:
-
Object
- Object
- Avo::PluginManager
- Defined in:
- lib/avo/plugin_manager.rb
Instance Attribute Summary collapse
-
#plugins ⇒ Object
(also: #all)
readonly
Returns the value of attribute plugins.
Instance Method Summary collapse
- #as_json(*arg) ⇒ Object
-
#initialize ⇒ PluginManager
constructor
A new instance of PluginManager.
- #installed?(name) ⇒ Boolean
- #register(name, priority: 10) ⇒ Object
- #register_field(method_name, klass) ⇒ Object
- #register_resource_tool ⇒ Object
- #register_tool ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize ⇒ PluginManager
Returns a new instance of PluginManager.
7 8 9 |
# File 'lib/avo/plugin_manager.rb', line 7 def initialize @plugins = [] end |
Instance Attribute Details
#plugins ⇒ Object (readonly) Also known as: all
Returns the value of attribute plugins.
3 4 5 |
# File 'lib/avo/plugin_manager.rb', line 3 def plugins @plugins end |
Instance Method Details
#as_json(*arg) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/avo/plugin_manager.rb', line 25 def as_json(*arg) plugins.map do |plugin| { klass: plugin.to_s, priority: plugin.priority, } end end |
#installed?(name) ⇒ Boolean
42 43 44 45 46 |
# File 'lib/avo/plugin_manager.rb', line 42 def installed?(name) plugins.any? do |plugin| plugin.name.to_s == name.to_s end end |
#register(name, priority: 10) ⇒ Object
11 12 13 |
# File 'lib/avo/plugin_manager.rb', line 11 def register(name, priority: 10) @plugins << Plugin.new(name:, priority: priority) end |
#register_field(method_name, klass) ⇒ Object
15 16 17 |
# File 'lib/avo/plugin_manager.rb', line 15 def register_field(method_name, klass) Avo.field_manager.load_field method_name, klass end |
#register_resource_tool ⇒ Object
19 20 |
# File 'lib/avo/plugin_manager.rb', line 19 def register_resource_tool end |
#register_tool ⇒ Object
22 23 |
# File 'lib/avo/plugin_manager.rb', line 22 def register_tool end |
#to_s ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/avo/plugin_manager.rb', line 34 def to_s plugins.map do |plugin| plugin.to_s end.join(",") rescue "Failed to fetch plugins." end |