vagrant/bin/hobo-down

26 lines
538 B
Ruby
Executable File

#!/usr/bin/env ruby
begin
require File.expand_path(File.join(File.dirname(__FILE__), "../vendor/gems/ruby/1.8/environment"))
rescue LoadError
end
require 'git-style-binary/command'
# Get hobo
hobodir = File.join(File.dirname(__FILE__), '..', 'lib')
$:.unshift(hobodir) unless $:.include?(hobodir)
require 'hobo'
GitStyleBinary.command do
short_desc "destroys the hobo environment"
banner <<-EOS
Usage: #{command.full_name} #{all_options_string}
Destroys the hobo environment.
EOS
run do |command|
Hobo::VM.down
end
end