29 lines
593 B
Plaintext
29 lines
593 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
begin
|
||
|
require File.expand_path('../../.bundle/environment', __FILE__)
|
||
|
rescue LoadError
|
||
|
# Fallback on rubygems
|
||
|
require "rubygems"
|
||
|
end
|
||
|
|
||
|
require 'git-style-binary/command'
|
||
|
|
||
|
# Get library
|
||
|
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
|
||
|
$:.unshift(libdir) unless $:.include?(libdir)
|
||
|
require 'vagrant'
|
||
|
|
||
|
GitStyleBinary.command do
|
||
|
short_desc "initializes directory for vagrant use"
|
||
|
banner <<-EOS
|
||
|
Usage: #{command.full_name} #{all_options_string}
|
||
|
|
||
|
Creates the initial files required for using vagrant.
|
||
|
|
||
|
EOS
|
||
|
|
||
|
run do |command|
|
||
|
Vagrant::Commands.init
|
||
|
end
|
||
|
end
|