The Plugin class should be an object which provides the following methods:
- name - Used during initialisation to order the plugin (based on
name and
the contents of <tt>config.plugins</tt>). - +valid?+ - Returns true if this plugin can be loaded.
- load_paths - Each path within the returned array will be added to the $LOAD_PATH.
- load - Finally ‘load’ the plugin.
These methods are expected by the Rails::Plugin::Locator and Rails::Plugin::Loader classes. The default implementation returns the lib directory as its load_paths, and evaluates init.rb when load is called.
You can also inspect the about.yml data programmatically:
plugin = Rails::Plugin.new(path_to_my_plugin) plugin.about["author"] # => "James Adam" plugin.about["url"] # => "http://interblah.net"
Methods
- <=>
- about
- controller_path
- engine?
- load
- load_paths
- loaded?
- metal_path
- new
- routed?
- routing_file
- valid?
- view_path
Included Modules
- Comparable
Attributes
| [R] | directory | |
| [R] | name |
Public Class methods
Public Instance methods
Engines are plugins with an app/ directory.
Evaluates a plugin‘s init.rb file.
Returns a list of paths this plugin wishes to make available in $LOAD_PATH.
# File railties/lib/rails/plugin.rb, line 35
35: def load_paths
36: report_nonexistant_or_empty_plugin! unless valid?
37:
38: returning [] do |load_paths|
39: load_paths << lib_path if has_lib_directory?
40: load_paths << app_paths if has_app_directory?
41: end.flatten
42: end
Returns true if the engine ships with a routing file