Sha256: dc1cb3d247db65f59e981f88936253902883496b3d0ddc1ce998a3cb85f6d9c0
Contents?: true
Size: 481 Bytes
Versions: 26
Compression:
Stored size: 481 Bytes
Contents
module Vagrant class Commands # Manages the `vagrant box` command, allowing the user to add # and remove boxes. This single command, given an array, determines # which action to take and calls the respective action method # (see {box_add} and {box_remove}) class BoxCommand < Base Base.subcommand "box", self description "Box commands" def options_spec(opts) opts.banner = "Usage: vagrant box SUBCOMMAND" end end end end
Version data entries
26 entries across 26 versions & 2 rubygems