1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00
omniauth--omniauth/Rakefile

18 lines
391 B
Text
Raw Normal View History

2010-03-25 19:37:03 -04:00
require 'rubygems'
require 'rake'
require 'term/ansicolor'
2010-03-25 19:37:03 -04:00
include Term::ANSIColor
2010-03-25 19:37:03 -04:00
OMNIAUTH_GEMS = %w(oa-core oa-basic oa-oauth oa-openid)
2010-03-25 19:37:03 -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