Files
XCRemoteCache/cocoapods-plugin/Rakefile
T
2021-08-23 07:44:34 +02:00

13 lines
213 B
Ruby

require 'bundler/gem_tasks'
def specs(dir)
FileList["spec/#{dir}/*_spec.rb"].shuffle.join(' ')
end
desc 'Runs all the specs'
task :specs do
sh "bundle exec bacon #{specs('**')}"
end
task :default => :specs