lib/wrapp/cli.rb in wrapp-0.2.0 vs lib/wrapp/cli.rb in wrapp-0.2.1

- old
+ new

@@ -1,10 +1,15 @@ module Wrapp class CLI include Mixlib::CLI + banner "Usage: #{File.basename($0)} [options] APP_PATH" + option :include_parent_dir, - :long => '--include-parent-dir' + :long => '--include-parent-dir', + :short => '-i', + :description => "Include the App's parent directory in the DMG with all(!!!) content.", + :boolean => true class << self def run new.run(ARGV) end