2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-08-20 02:00:24 +00:00
Files
xcat-core/xCAT-OpenStack/chef-cookbooks/grizzly-xcat/cookbooks/runit/Rakefile
2013-11-12 10:24:04 -05:00

18 lines
325 B
Ruby

require 'rubygems'
require 'bundler'
Bundler.setup
require 'rake'
require 'foodcritic'
require 'rspec/core/rake_task'
task :default => [:spec]
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = "./test/spec{,/*/**}/*_spec.rb"
end
FoodCritic::Rake::LintTask.new do |t|
t.options = {:fail_tags => ['correctness']}
end