Why isn't my cocoapods post_install hook updating my preprocessor macros?
I've been going round and round for a couple days now trying to figure out why my post_install hook isn't producing the output I'm expecting. Here's my Podfile: source 'https://github.com/CocoaPods/Specs.git' target "SCCommon" do platform :ios, "6.0" pod 'AFNetworking', '~> 1.2.1' pod 'Mantle', '~> 1.3' pod 'PubNub', '3.5.5' end target "SCCommon-TestHarness" do platform :ios, "6.0" # inhibit_all_warnings! pod 'SCCommon', :path => '../SCCommon.podspec' end target "SCCommon-UnitTests" do platform :ios, "6.0" # inhibit_all_warnings! pod 'OCMock', '2.2.3' pod 'SCCommon', :path => '../SCCommon