lib/wrapp/cli.rb in wrapp-0.6.0 vs lib/wrapp/cli.rb in wrapp-0.7.0

- old
+ new

@@ -7,9 +7,24 @@ option :include_parent_dir, :long => '--include-parent-dir', :short => '-i', :description => "Include the App's parent directory in the DMG with all(!!!) content.", :boolean => true + option :add_applications_link, + :long => '--add-applications-link', + :short => '-l', + :description => 'Add /Applications symlink to the DMG.', + :boolean => true, + :default => true + option :filesystem, + :long => '--filesystem FILESYSTEM', + :short => '-f FILESYSTEM', + :description => "Causes a filesystem of the specified type to be written to the image.", + :default => 'HFS+' + option :volume_name, + :long => '--volume-name NAME', + :short => '-n NAME', + :description => "Volume name of the newly created filesystem." class << self def run new.run(ARGV) end