31 lines
626 B
Ruby
31 lines
626 B
Ruby
source "https://github.com/CocoaPods/Specs.git"
|
|
source "https://github.com/TouchInstinct/Podspecs.git"
|
|
|
|
abstract_target 'LeadKitAdditions' do
|
|
pod 'KeychainAccess', '3.0.2'
|
|
pod 'IDZSwiftCommonCrypto', '0.9.1'
|
|
pod 'SwiftValidator', '4.0.0'
|
|
pod 'InputMask', '2.2.5'
|
|
|
|
inhibit_all_warnings!
|
|
|
|
target 'LeadKitAdditions iOS' do
|
|
platform :ios, '9.0'
|
|
|
|
use_frameworks!
|
|
|
|
pod "LeadKit", '0.5.1'
|
|
end
|
|
|
|
target 'LeadKitAdditions iOS Extensions' do
|
|
platform :ios, '9.0'
|
|
|
|
use_frameworks!
|
|
|
|
pod "LeadKit/Core-iOS-Extension", '0.5.1'
|
|
end
|
|
end
|
|
|
|
# If you have slow HDD
|
|
ENV['COCOAPODS_DISABLE_STATS'] = "true"
|