#!/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 "opens an SSH connection into the VM" banner <<-EOS Usage: #{command.full_name} #{all_options_string} Opens an SSH connection into the created VM. EOS run do |command| Hobo::VM.ssh end end