module PutsDebugger

Constants

VERSION

Public Class Methods

put() { || ... } click to toggle source
# File lib/puts_debugger.rb, line 4
def self.put
  if block_given?
    puts "#" * 90
    puts "#" * 90
    puts "#" * 90
    puts yield
    puts caller.grep_v(/gem/)
    puts "#" * 90
    puts "#" * 90
    puts "#" * 90
  end
end