From 401028ffb129e7ce756ceb1fd04cf55abde0cf60 Mon Sep 17 00:00:00 2001 From: Alexey Gerasimov Date: Wed, 18 Jul 2018 19:08:26 +0300 Subject: [PATCH] [Update] LeadKitAdditions (0.3.2) --- .../0.3.2/LeadKitAdditions.podspec | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 LeadKitAdditions/0.3.2/LeadKitAdditions.podspec diff --git a/LeadKitAdditions/0.3.2/LeadKitAdditions.podspec b/LeadKitAdditions/0.3.2/LeadKitAdditions.podspec new file mode 100644 index 0000000..464da23 --- /dev/null +++ b/LeadKitAdditions/0.3.2/LeadKitAdditions.podspec @@ -0,0 +1,45 @@ +Pod::Spec.new do |s| + s.name = "LeadKitAdditions" + s.version = "0.3.2" + s.summary = "iOS framework with a bunch of tools for rapid development" + s.homepage = "https://github.com/TouchInstinct/LeadKitAdditions" + s.license = "Apache License, Version 2.0" + s.author = "Touch Instinct" + s.platform = :ios, "9.0" + s.source = { :git => "https://github.com/TouchInstinct/LeadKitAdditions.git", :tag => s.version } + + s.subspec 'Core' do |ss| + ss.ios.deployment_target = '9.0' + ss.source_files = "Sources/**/*.swift" + + ss.exclude_files = [ + "Sources/Services/Network/DefaultNetworkService+ActivityIndicator+Extension.swift", + ] + + ss.dependency "LeadKit", '~> 0.8.0' + ss.dependency "KeychainAccess", '3.1.0' + ss.dependency "CryptoSwift", '~> 0.9.0' + ss.dependency "SwiftValidator", '5.0.0' + ss.dependency "PinLayout", '~> 1.6' + end + + s.subspec 'Core-iOS-Extension' do |ss| + ss.platform = :ios, '9.0' + ss.source_files = "Sources/**/*.swift" + + ss.exclude_files = [ + "Sources/Classes/Cells/LabelTableViewCell/*.swift", + "Sources/Services/Network/DefaultNetworkService+ActivityIndicator.swift", + "Sources/Extensions/Cells/**/*.swift" + ] + + ss.dependency "LeadKit/Core-iOS-Extension", '~> 0.8.0' + ss.dependency "KeychainAccess", '3.1.0' + ss.dependency "CryptoSwift", '~> 0.9.0' + ss.dependency "SwiftValidator", '5.0.0' + ss.dependency "PinLayout", '~> 1.6' + end + + s.default_subspec = 'Core' + +end