module CodeRay::PluginHost

def plugin_path *args

The path where the plugins can be found.
def plugin_path *args
  unless args.empty?
    @plugin_path = File.expand_path File.join(*args)
  end
  @plugin_path ||= ''
end