27 lines
542 B
Plaintext
27 lines
542 B
Plaintext
|
#!/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 "suspends the hobo environment"
|
||
|
banner <<-EOS
|
||
|
Usage: #{command.full_name} #{all_options_string}
|
||
|
|
||
|
Suspends the hobo environment.
|
||
|
|
||
|
EOS
|
||
|
|
||
|
run do |command|
|
||
|
Hobo::VM.suspend
|
||
|
end
|
||
|
end
|