vagrant-lxc-ng/Rakefile

10 lines
263 B
Ruby
Raw Normal View History

2013-02-25 04:58:04 +00:00
raise 'This Rakefile is meant to be used from the dev box' unless ENV['USER'] == 'vagrant'
Dir['./tasks/**/*.rake'].each { |f| load f }
2013-02-28 03:06:29 +00:00
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task :default => :coverage
rescue LoadError; end