36 lines
641 B
Ruby
Executable File
36 lines
641 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')
|
|
$:.unshift(libdir) unless $:.include?(libdir)
|
|
require 'vagrant'
|
|
|
|
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.box(command.argv)
|
|
rescue ArgumentError
|
|
educate
|
|
end
|
|
end
|
|
end
|