Skip to content

Commit

Permalink
Updated appledoc binary
Browse files Browse the repository at this point in the history
  • Loading branch information
blakewatters committed Jun 30, 2011
1 parent 3b89382 commit 6f40587
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Rakefile
Expand Up @@ -51,9 +51,9 @@ end
def run(command) def run(command)
puts "Executing: `#{command}`" puts "Executing: `#{command}`"
system(command) system(command)
if $? != 0 if $?.exitstatus != 0
puts "[!] Failed with exit code #{$?} while running: `#{command}`" puts "[!] Failed with exit code #{$?.exitstatus} while running: `#{command}`"
exit($?.to_i) exit($?.exitstatus)
end end
end end


Expand All @@ -62,10 +62,11 @@ task :default => 'uispec:all'


desc "Build RestKit for iOS and Mac OS X" desc "Build RestKit for iOS and Mac OS X"
task :build do task :build do
run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKit -sdk iphoneos4.3 clean build") run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKit -sdk iphonesimulator3.2 clean build")
run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKit -sdk iphoneos clean build")
run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKit -sdk macosx10.6 clean build") run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKit -sdk macosx10.6 clean build")
run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKitThree20 -sdk iphoneos4.3 clean build") run("xcodebuild -workspace RestKit.xcodeproj/project.xcworkspace -scheme RestKitThree20 -sdk iphoneos clean build")
run("xcodebuild -workspace Examples/RKCatalog/RKCatalog.xcodeproj/project.xcworkspace -scheme RKCatalog -sdk iphoneos4.3 clean build") run("xcodebuild -workspace Examples/RKCatalog/RKCatalog.xcodeproj/project.xcworkspace -scheme RKCatalog -sdk iphoneos clean build")
end end


desc "Generate documentation via appledoc" desc "Generate documentation via appledoc"
Expand Down
Binary file modified Vendor/appledoc/appledoc
Binary file not shown.

0 comments on commit 6f40587

Please sign in to comment.