1
0
Fork 0
mirror of https://github.com/mperham/connection_pool synced 2023-03-27 23:22:21 -04:00
connection_pool/Rakefile

15 lines
252 B
Ruby
Raw Normal View History

2012-12-18 11:35:50 -05:00
begin
require 'bundler'
Bundler::GemHelper.install_tasks
rescue LoadError
end
2011-05-14 18:36:17 -04:00
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'test'
test.warning = true
test.pattern = 'test/**/test_*.rb'
end
task :default => :test