diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/longboat/config.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/longboat/config.rb b/lib/longboat/config.rb index 2cc7632..cd27bf9 100644 --- a/lib/longboat/config.rb +++ b/lib/longboat/config.rb @@ -33,7 +33,9 @@ module Longboat def self.for_raider(&block) parser = Optimist::Parser.new(&block) parser.ignore_invalid_options = true - parser.parse + opts = parser.parse + opts.delete(:help) + opts end end end |