From 2b0e44d40780d4f2f8ac6bd5b3cc4e1c7ec2edc7 Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 26 Nov 2014 09:52:20 -0800 Subject: make debugger gem optional --- bin/leap | 5 ++++- lib/leap_cli/commands/pre.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/leap b/bin/leap index 512201c..47dfdf9 100755 --- a/bin/leap +++ b/bin/leap @@ -2,7 +2,10 @@ if ARGV.include?('--debug') || ARGV.include?('-d') DEBUG=true - require 'debugger' + begin + require 'debugger' + rescue LoadError + end else DEBUG=false end diff --git a/lib/leap_cli/commands/pre.rb b/lib/leap_cli/commands/pre.rb index 7a64c15..055f3a1 100644 --- a/lib/leap_cli/commands/pre.rb +++ b/lib/leap_cli/commands/pre.rb @@ -20,7 +20,7 @@ module LeapCli; module Commands desc 'Skip prompts and assume "yes"' switch :yes, :negatable => false - desc 'Enable debugging library (leap_cli development only)' + desc 'Print full stack trace for exceptions and load `debugger` gem if installed.' switch [:d, :debug], :negatable => false desc 'Disable colors in output' -- cgit v1.2.3