2013-07-18 16:11:36 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandHelp
|
|
|
|
class Command < Vagrant.plugin("2", :command)
|
2013-11-23 22:00:42 +00:00
|
|
|
def self.synopsis
|
|
|
|
"shows the help for a subcommand"
|
|
|
|
end
|
|
|
|
|
2013-07-18 16:11:36 +00:00
|
|
|
def execute
|
|
|
|
return @env.cli([]) if @argv.empty?
|
|
|
|
@env.cli([@argv[0], "-h"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|