Sha256: 1dce15ac403f207da235bbcda87cb23a8114d98f8550aaa76fc55f87ce1b9610
Contents?: true
Size: 509 Bytes
Versions: 24
Compression:
Stored size: 509 Bytes
Contents
module Vagrant class Commands # Adds a box to the local filesystem, given a URI. module Box class Add < BoxCommand BoxCommand.subcommand "add", self description "Add a box" def execute(args) if args.length != 2 show_help return end Vagrant::Box.add(env, args[0], args[1]) end def options_spec(opts) opts.banner = "Usage: vagrant box add NAME URI" end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems