Skip to content

Instantly share code, notes, and snippets.

@jgarth
Created February 12, 2014 02:00
Show Gist options
  • Save jgarth/8948603 to your computer and use it in GitHub Desktop.
Save jgarth/8948603 to your computer and use it in GitHub Desktop.
CocoaPods Podfile addition to fix RestKit/Testing "missing header" build issue in 0.22.0
pod 'RestKit'
pod 'RestKit/Testing'
# Fix RestKit/Testing Pod after installation
post_install do |installer|
print "Fixing RestKit/Testing Pod\n"
system "sed -ie '/RKManagedObjectStore\+RKSearchAdditions/d' ./Pods/RestKit/Code/Testing/RKTestFactory.m"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment