class Fission::Command::Delete

def option_parser

def option_parser
  optparse = OptionParser.new do |opts|
    opts.banner = "Usage: fission delete TARGET_VM [OPTIONS]"
    opts.separator ''
    opts.separator 'Deletes TARGET_VM.'
    opts.separator ''
    opts.separator 'OPTIONS:'
    opts.on '--force', "Stop the VM if it's running and then delete it" do
      @options.force = true
    end
  end
  optparse
end