vagrant/bin/hobo-down

31 lines
607 B
Ruby
Executable File

#!/usr/bin/env ruby
begin
require File.expand_path('../../.bundle/environment', __FILE__)
rescue LoadError
# Fallback on doing the resolve at runtime.
require "rubygems"
require "bundler"
Bundler.setup
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