10 lines
260 B
Ruby
10 lines
260 B
Ruby
module Vagrant
|
|
module Command
|
|
# Same as {Base} except adds the `name` argument so that you
|
|
# can use methods such as `target_vms` in your command.
|
|
class NamedBase < Base
|
|
argument :name, :type => :string, :optional => true
|
|
end
|
|
end
|
|
end
|