passepartout-apple/Podfile
Davide De Rosa 1b5070d667 Fix duplicated pods (Core + App)
Had to deintegrate and reintegrate CocoaPods.
2019-03-18 17:59:02 +01:00

24 lines
508 B
Ruby

source 'https://github.com/cocoapods/specs.git'
platform :ios, '11.0'
use_frameworks!
def shared_pods
#pod 'TunnelKit', '~> 1.4.2'
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '08b04c8'
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
end
target 'Passepartout-Core' do
shared_pods
end
target 'Passepartout-CoreTests' do
shared_pods
end
target 'Passepartout-iOS' do
pod 'MBProgressHUD'
end
target 'Passepartout-iOS-Tunnel' do
shared_pods
end