From a5d5549d6df79789bbcc0248c6c0387a1ec3eeda Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Wed, 10 Apr 2019 22:58:18 +0300 Subject: [PATCH] [Add] UserAuthenticationKit (0.0.1) --- .../0.0.1/UserAuthenticationKit.podspec | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 UserAuthenticationKit/0.0.1/UserAuthenticationKit.podspec diff --git a/UserAuthenticationKit/0.0.1/UserAuthenticationKit.podspec b/UserAuthenticationKit/0.0.1/UserAuthenticationKit.podspec new file mode 100644 index 0000000..4c4166c --- /dev/null +++ b/UserAuthenticationKit/0.0.1/UserAuthenticationKit.podspec @@ -0,0 +1,38 @@ +Pod::Spec.new do |s| + s.name = "UserAuthenticationKit" + s.version = "0.0.1" + s.summary = "User authentication framework for iOS" + s.homepage = "https://github.com/TouchInstinct/UserAuthenticationKit" + s.license = "Apache License, Version 2.0" + s.author = "Touch Instinct" + s.source = { :git => "https://github.com/petropavel13/UserAuthenticationKit.git", :tag => s.version } + s.platform = :ios, '9.0' + + s.subspec 'Core' do |ss| + ss.ios.deployment_target = '9.0' + ss.tvos.deployment_target = '9.0' + ss.watchos.deployment_target = '2.0' + + ss.ios.source_files = "Sources/**/*.swift" + ss.watchos.source_files = [ + "Sources/Classes/PassCode/{Storage,Validation}/*.swift", + "Sources/Enums/{PassCodeFlowError,PassCodeState}.swift", + "Sources/Extensions/PassCode/String+PassCodeValidation.swift", + "Sources/Protocols/PassCode/{Storage,Validation}/*.swift" + ] + ss.tvos.source_files = [ + "Sources/Classes/PassCode/{Storage,Validation}/*.swift", + "Sources/Enums/{PassCodeFlowError,PassCodeState}.swift", + "Sources/Extensions/PassCode/String+PassCodeValidation.swift", + "Sources/Protocols/PassCode/{Storage,Validation}/*.swift" + ] + + ss.dependency "CryptoSwift" + ss.dependency "KeychainAccess" + ss.ios.dependency "CollectionKit" + end + + s.default_subspec = 'Core' + s.swift_version = '5.0' + +end