2010-03-25 19:37:03 -04:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
2010-04-04 23:30:40 -04:00
|
|
|
require 'term/ansicolor'
|
2010-03-25 19:37:03 -04:00
|
|
|
|
2010-04-04 23:30:40 -04:00
|
|
|
include Term::ANSIColor
|
2010-03-25 19:37:03 -04:00
|
|
|
|
2010-04-04 23:30:40 -04:00
|
|
|
OMNIAUTH_GEMS = %w(oa-core oa-basic oa-oauth oa-openid)
|
2010-03-25 19:37:03 -04:00
|
|
|
|
2010-04-04 23:30:40 -04:00
|
|
|
desc 'Run specs for all of the gems.'
|
|
|
|
task :spec do
|
|
|
|
OMNIAUTH_GEMS.each_with_index do |dir, i|
|
|
|
|
Dir.chdir(dir) do
|
|
|
|
print blue, "\n\n== ", cyan, dir, blue, " specs are running...", clear, "\n\n"
|
|
|
|
system('rake spec')
|
|
|
|
end
|
|
|
|
end
|
2010-03-25 19:37:03 -04:00
|
|
|
end
|
2010-04-04 23:30:40 -04:00
|
|
|
|