The Plugin class should be an object which
provides the following methods:
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"