class Exception
Public Instance Methods
bt()
click to toggle source
# File lib/amoeba_deploy_tools/helpers.rb, line 45 def bt backtrace.map do |l| cwd = Dir.pwd l.start_with?(cwd) ? l.sub(cwd, '.') : l end end