passepartout-apple/Podfile
Davide De Rosa 64cbb9b4b2 Use versioned TunnelKit
Also fixes issues with IPv4/UInt32 endianness.
2018-11-01 13:41:27 +01:00

23 lines
516 B
Ruby

source 'https://github.com/cocoapods/specs.git'
use_frameworks!
def shared_pods
pod 'TunnelKit', '~> 1.3.0'
#pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '9c989da'
#pod 'TunnelKit', :path => '../tunnelkit'
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