class Rouge::RegexLexer::Rule

def consume(stream, &b)

def consume(stream, &b)
  stream.scan(@re)
  if stream.matched?
    yield stream
    return true
  end
  false
end