22 lines
470 B
Plaintext
22 lines
470 B
Plaintext
|
source 'https://github.com/cocoapods/specs.git'
|
||
|
use_frameworks!
|
||
|
|
||
|
def shared_pods
|
||
|
pod 'TunnelKit', '~> 1.1.1'
|
||
|
#pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '1234567'
|
||
|
end
|
||
|
|
||
|
target 'Passepartout-iOS' do
|
||
|
platform :ios, '11.0'
|
||
|
shared_pods
|
||
|
pod 'MBProgressHUD'
|
||
|
end
|
||
|
target 'Passepartout-iOS-Tunnel' do
|
||
|
platform :ios, '11.0'
|
||
|
shared_pods
|
||
|
end
|
||
|
target 'PassepartoutTests-iOS' do
|
||
|
platform :ios, '11.0'
|
||
|
shared_pods
|
||
|
end
|