mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-02 17:57:26 +08:00
Also move the logic out into a separate util module. Fixes http://hipbyte.myjetbrains.com/youtrack/issue/RM-399.
7 lines
126 B
Ruby
7 lines
126 B
Ruby
desc "Run all tests"
|
|
task :spec do
|
|
sh "bundle exec bacon #{FileList['**/*_spec.rb'].join(' ')}"
|
|
end
|
|
|
|
task :default => :spec
|