wireguard-apple/Podfile
Jeroen Leenarts d15972d2ce Fix casing from Wireguard to WireGuard.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2018-05-24 20:13:21 +02:00

26 lines
548 B
Ruby

platform :ios, '10.0'
use_frameworks!
swift_version = "4.0"
target 'WireGuard' do
pod 'Fabric'
pod 'Crashlytics'
pod 'SwiftLint'
pod 'PromiseKit/CorePromise'
pod 'KeychainSwift'
pod 'Moya'
pod 'Disk'
pod 'AlamofireImage'
pod 'BNRCoreDataStack'
pod 'NVActivityIndicatorView'
post_install do | installer |
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-WireGuard/Pods-WireGuard-Acknowledgements.plist', 'Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
end