2013-11-23 14:00:42 -08:00

17 lines
315 B
Ruby

require 'optparse'
module VagrantPlugins
module CommandHelp
class Command < Vagrant.plugin("2", :command)
def self.synopsis
"shows the help for a subcommand"
end
def execute
return @env.cli([]) if @argv.empty?
@env.cli([@argv[0], "-h"])
end
end
end
end