module CodeRay::Plugin

def title title = nil

optional argument +title+.
Returns the title of the plugin, or sets it to the
def title title = nil
  if title
    @title = title.to_s
  else
    @title ||= name[/([^:]+)$/, 1]
  end
end