Exception: Exception

Defined in:
lib/amoeba_deploy_tools/helpers.rb

Instance Method Summary collapse

Instance Method Details

#btObject



45
46
47
48
49
50
# 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