templates/simple/Rakefile in xcbootstrap-0.0.1 vs templates/simple/Rakefile in xcbootstrap-0.0.2
- old
+ new
@@ -20,15 +20,15 @@
system("which -s xctool") || system("brew install xctool") || fail("Error: installing xctool failed")
end
desc "Clean and build the app"
task :build do
- system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphoneos clean build") || fail("Error building app")
+ system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphoneos clean build ONLY_ACTIVE_ARCH=NO") || fail("Error building app")
end
desc "Clean, build the app, run unit tests"
task :test do
- system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphonesimulator clean test") || fail("Error running unit tests")
+ system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphonesimulator clean test ONLY_ACTIVE_ARCH=NO") || fail("Error running unit tests")
end
desc "Configure Frank tests"
task "frank:setup" do
system("frank setup --project app/simple.xcodeproj --target simple") || fail("Error running frank setup")