2010-02-02 08:48:38 +00:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
begin
|
2010-02-08 07:14:11 +00:00
|
|
|
require File.expand_path('../../.bundle/environment', __FILE__)
|
2010-02-02 08:48:38 +00:00
|
|
|
rescue LoadError
|
2010-02-10 06:48:08 +00:00
|
|
|
# Fallback on rubygems
|
2010-02-06 07:41:22 +00:00
|
|
|
require "rubygems"
|
2010-02-02 08:48:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
require 'git-style-binary/command'
|
|
|
|
|
2010-02-10 07:08:23 +00:00
|
|
|
# Get library
|
|
|
|
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
|
2010-03-13 11:21:04 +00:00
|
|
|
require File.expand_path('vagrant', libdir)
|
2010-02-02 08:48:38 +00:00
|
|
|
|
|
|
|
GitStyleBinary.command do
|
2010-02-10 07:08:23 +00:00
|
|
|
short_desc "resumes the vagrant environment"
|
2010-02-02 08:48:38 +00:00
|
|
|
banner <<-EOS
|
|
|
|
Usage: #{command.full_name} #{all_options_string}
|
|
|
|
|
2010-02-10 07:08:23 +00:00
|
|
|
Resumes the vagrant environment.
|
2010-02-02 08:48:38 +00:00
|
|
|
|
|
|
|
EOS
|
|
|
|
|
|
|
|
run do |command|
|
2010-02-10 21:46:22 +00:00
|
|
|
Vagrant::Commands.resume
|
2010-02-02 08:48:38 +00:00
|
|
|
end
|
|
|
|
end
|