module CodeRay::Plugin
Plugin
¶ ↑
Plugins have to include this module. IMPORTANT: Use extend for this module. See CodeRay::PluginHost for examples.
Attributes
Public Instance Methods
Source
# File lib/coderay/helpers/plugin.rb, line 46 def aliases plugin_host.plugin_hash.inject [] do |aliases, (key, _)| aliases << key if plugin_host[key] == self aliases end end
Source
# File lib/coderay/helpers/plugin.rb, line 39 def plugin_host host = nil if host.is_a? PluginHost const_set :PLUGIN_HOST, host end self::PLUGIN_HOST end
The PluginHost
for this Plugin
class.
Source
# File lib/coderay/helpers/plugin.rb, line 23 def register_for id @plugin_id = id plugin_host.register self, id end
Register this class for the given id
.
Example:
class MyPlugin < PluginHost::BaseClass register_for :my_id ... end
See PluginHost.register
.
Source
# File lib/coderay/helpers/plugin.rb, line 30 def title title = nil if title @title = title.to_s else @title ||= name[/([^:]+)$/, 1] end end
Returns the title of the plugin, or sets it to the optional argument title
.