`vagrant -v` works again [closes GH-147]

This commit is contained in:
Mitchell Hashimoto 2010-08-25 16:12:08 -07:00
parent 98087243a7
commit e3b1f7ed1e
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
module Vagrant
module Command
class VersionCommand < Base
desc "Prints the Vagrant version information"
register "version", :alias => %w(-v --version)
def version
env.ui.info "Vagrant version #{Vagrant::VERSION}"
end
end
end
end