vagrant-cachier-ng/Rakefile
2013-06-24 12:36:26 -03:00

11 lines
227 B
Ruby

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
task :default => [:spec]
namespace :spec do
RSpec::Core::RakeTask.new('unit') do |t|
t.pattern = 'spec/unit/**/*_spec.rb'
end
end
task :spec => ['spec:unit']