This Plugin subclass represents a Gem plugin. Although RubyGems has already taken care of $LOAD_PATHs, it exposes its load_paths to add them to Dependencies.load_paths.

Methods
Public Class methods
new(spec, gem)

Initialize this plugin from a Gem::Specification.

     # File railties/lib/rails/plugin.rb, line 157
157:     def initialize(spec, gem)
158:       directory = spec.full_gem_path
159:       super(directory)
160:       @name = spec.name
161:     end
Public Instance methods
init_path()
     # File railties/lib/rails/plugin.rb, line 163
163:     def init_path
164:       File.join(directory, 'rails', 'init.rb')
165:     end