mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-26 03:12:37 +00:00
23 lines
516 B
Ruby
23 lines
516 B
Ruby
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 => '961a30c'
|
|
#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
|