From 884b9bbe9fe1822bf4cd8709803748c32a32a0ff Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Sat, 1 Jun 2013 13:20:57 +0900 Subject: [PATCH] add 'build' task that builds for both modes --- lib/motion/project/template/osx.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/motion/project/template/osx.rb b/lib/motion/project/template/osx.rb index 9be19472..0bde2c25 100644 --- a/lib/motion/project/template/osx.rb +++ b/lib/motion/project/template/osx.rb @@ -46,6 +46,9 @@ namespace :build do end end +desc "Build everything" +task :build => ['build:development', 'build:release'] + desc "Run the project" task :run => 'build:development' do exec = App.config.app_bundle_executable('MacOSX')