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')
|
|
|
|
$:.unshift(libdir) unless $:.include?(libdir)
|
|
|
|
require 'vagrant'
|
2010-02-02 08:48:38 +00:00
|
|
|
|
|
|
|
GitStyleBinary.command do
|
2010-02-10 07:08:23 +00:00
|
|
|
short_desc "create the vagrant environment"
|
2010-02-02 08:48:38 +00:00
|
|
|
banner <<-EOS
|
|
|
|
Usage: #{command.full_name} #{all_options_string}
|
|
|
|
|
2010-03-03 06:07:04 +00:00
|
|
|
Create the vagrant environment if it doesn't exist,
|
|
|
|
otherwise start the vagrant environment if its not
|
|
|
|
already running.
|
2010-02-02 08:48:38 +00:00
|
|
|
|
|
|
|
EOS
|
|
|
|
|
|
|
|
run do |command|
|
2010-02-10 21:46:22 +00:00
|
|
|
Vagrant::Commands.up
|
2010-02-02 08:48:38 +00:00
|
|
|
end
|
|
|
|
end
|