1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00
simi--omniauth-facebook/Rakefile

10 lines
179 B
Ruby
Raw Normal View History

2011-10-15 03:36:27 -04:00
require 'bundler/gem_tasks'
2012-07-01 19:45:22 -04:00
require 'rake/testtask'
2011-10-15 03:36:27 -04:00
2012-07-01 19:45:22 -04:00
Rake::TestTask.new do |task|
task.libs << 'test'
2015-02-21 18:14:15 -05:00
task.test_files = FileList['test/*_test.rb']
2012-07-01 19:45:22 -04:00
end
2011-10-15 03:36:27 -04:00
2012-07-01 19:45:22 -04:00
task :default => :test