mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
10 lines
138 B
Ruby
10 lines
138 B
Ruby
task :default => [:test]
|
|
|
|
task :test do
|
|
ret = true
|
|
Dir["test/**/*.rb"].each do |f|
|
|
ret = ret && ruby(f, '')
|
|
end
|
|
exit(ret)
|
|
end
|