module CodeRay::PluginHost

def load_plugin_map

This is done automatically when plugin_path is called.

Loads the map file (see map).
def load_plugin_map
  mapfile = path_to '_map'
  @plugin_map_loaded = true
  if File.exist? mapfile
    require mapfile
    true
  else
    false
  end
end