Skip to content

Instantly share code, notes, and snippets.

@orta
Created July 16, 2014 10:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orta/44e4d27fab261220f0db to your computer and use it in GitHub Desktop.
Save orta/44e4d27fab261220f0db to your computer and use it in GitHub Desktop.
Local dev overrides
platform :ios, '7.0'
# Allows per-dev overrides
local_podfile = "Podfile.local"
eval(File.open(local_podfile).read) if File.exist? local_podfile
# Core
pod 'Mantle', '1.5'
pod 'AFNetworking', '1.3.4'
...
pod 'Mantle', :path => "../Mantle"
@orta
Copy link
Author

orta commented Jul 16, 2014

the Podfile.local will override any later calls to a pod with a :path version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment