passepartout-apple/Podfile
Davide De Rosa 28a7dcdcf7 Update providers via web service
Reload products after update. Always re-list products!

Had to fix web services in Convenience, completion handler not
invoked from main queue.
2019-11-28 11:34:01 +01:00

33 lines
917 B
Ruby

source 'https://github.com/cocoapods/specs.git'
platform :ios, '11.0'
use_frameworks!
load 'Podfile.include'
$tunnelkit_name = 'TunnelKit'
$tunnelkit_specs = ['Protocols/OpenVPN', 'Extra/LZO']
def shared_pods
#pod_version $tunnelkit_name, $tunnelkit_specs, '~> 2.1.0'
pod_git $tunnelkit_name, $tunnelkit_specs, '8b17a13'
#pod_path $tunnelkit_name, $tunnelkit_specs, '..'
pod 'SSZipArchive'
for spec in ['About', 'Alerts', 'Dialogs', 'InApp', 'Misc', 'Options', 'Persistence', 'Reviewer', 'Tables', 'WebServices'] do
pod "Convenience/#{spec}", :git => 'https://github.com/keeshux/convenience', :commit => '7fe7dcf'
#pod "Convenience/#{spec}", :path => '../../personal/convenience'
end
end
target 'PassepartoutCore-iOS' do
shared_pods
pod 'Kvitto'
end
target 'Passepartout-iOS' do
pod 'MBProgressHUD'
end
target 'Passepartout-iOS-Tunnel' do
shared_pods
end