vagrant/bin/vagrant-box

35 lines
631 B
Ruby
Executable File

#!/usr/bin/env ruby
begin
require File.expand_path('../../.bundle/environment', __FILE__)
rescue LoadError
# Fallback on rubygems
require "rubygems"
end
require 'git-style-binary/command'
# Get library
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
require File.expand_path('vagrant', libdir)
GitStyleBinary.command do
short_desc "manage boxes"
banner <<-EOS
Usage:
#{command.full_name} add name uri
#{command.full_name} remove name
Add and remove vagrant boxes.
EOS
run do |command|
begin
Vagrant::Commands.execute(:box, command.argv)
rescue ArgumentError
educate
end
end
end