vagrant/Rakefile

24 lines
670 B
Ruby
Raw Normal View History

2010-08-14 06:26:04 +00:00
require 'rubygems'
require 'bundler/setup'
2018-12-06 22:07:01 +00:00
require 'rake/extensiontask'
Rake::ExtensionTask.new "go-plugin" do |ext|
ext.lib_dir = "lib/vagrant/go_plugin"
end
2011-11-14 03:40:49 +00:00
# Immediately sync all stdout so that tools like buildbot can
# immediately load in the output.
$stdout.sync = true
$stderr.sync = true
# Load all the rake tasks from the "tasks" folder. This folder
# allows us to nicely separate rake tasks into individual files
# based on their role, which makes development and debugging easier
# than one monolithic file.
task_dir = File.expand_path("../tasks", __FILE__)
Dir["#{task_dir}/**/*.rake"].each do |task_file|
load task_file
2010-01-22 05:07:01 +00:00
end
task default: "test:unit"