class Rouge::Lexers::IRBLexer

def allow_comments?

def allow_comments?
  true
end

def lang_lexer

def lang_lexer
  @lang_lexer ||= Ruby.new(@options)
end

def output_lexer

def output_lexer
  @output_lexer ||= IRBOutputLexer.new(@options)
end

def prompt_regex

def prompt_regex
  %r(
    ^.*?
    (
      (irb|pry).*?[>"*] |
      [>"*]>
    )
  )x
end