class ExceptionOverflow::Message

Public Class Methods

new(q) click to toggle source
# File lib/exception_overflow/message.rb, line 3
def initialize(q)
  @q = q
end

Public Instance Methods

render() click to toggle source
# File lib/exception_overflow/message.rb, line 7
def render
  @q + "\n\n#{links}"
end

Private Instance Methods

template(title, link) click to toggle source

Formatted link for output:

Which is the best graphical ruby profiler? stackoverflow.com/questions/8448705/which-is-the-best-graphical-ruby-profiler

# File lib/exception_overflow/message.rb, line 24
def template(title, link)
  "\t\e[1m#{title}\e[22m\n\t#{link}\n\n"
end