vagrant-cachier-ng/Rakefile

12 lines
227 B
Text
Raw Normal View History

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