lib/bowline/tasks/app.rake in maccman-bowline-0.1.10 vs lib/bowline/tasks/app.rake in maccman-bowline-0.3.0
- old
+ new
@@ -128,12 +128,15 @@
command = []
command << File.join(ti_lib_path, "tibuild.py")
command << "-d #{build_path}"
command << "-s #{ti_path}"
- command << "-r"
+ command << "-r" if ENV['TIRUN']
command << "-a #{ti_lib_path}"
command << app_path
exec(command.join(' '))
end
-end
+end
+
+desc "Bundle and build app"
+task :app => ["app:bundle", "app:build"]
\ No newline at end of file