Files
RubyMotion/test/external/Rakefile
2014-02-27 16:01:20 +01:00

7 lines
126 B
Ruby

desc "Run all tests"
task :spec do
sh "bundle exec bacon #{FileList['**/*_spec.rb'].join(' ')}"
end
task :default => :spec