17 lines
325 B
Ruby
17 lines
325 B
Ruby
# Basic Podfile template
|
|
# Put all the pods in both targets (I did not succeed in making this nicer)
|
|
# A Podfile always need a default platform (I get an error otherwise)
|
|
platform :osx, '10.9'
|
|
|
|
target 'OSX' do
|
|
platform :osx, '10.9'
|
|
|
|
# pod 'AFNetworking'
|
|
end
|
|
|
|
target 'iOS' do
|
|
platform :ios, '7.0'
|
|
|
|
# pod 'AFNetworking'
|
|
end
|
|
|