1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00
paloma/Rakefile

17 lines
282 B
Text
Raw Normal View History

2012-12-17 05:50:23 -05:00
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/*_spec.rb']
end
desc "Run tests"
task :test do
puts "Testing..."
sh "bundle exec rake spec"
end