From de48c216d593a0686a06738339af9efeef7c78f4 Mon Sep 17 00:00:00 2001 From: Maxim Sorokin Date: Wed, 22 Jul 2020 12:54:07 +0300 Subject: [PATCH 1/2] [Update] LeadKit (0.9.32) --- LeadKit/0.9.32/LeadKit.podspec | 108 +++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 LeadKit/0.9.32/LeadKit.podspec diff --git a/LeadKit/0.9.32/LeadKit.podspec b/LeadKit/0.9.32/LeadKit.podspec new file mode 100644 index 0000000..e28d9ea --- /dev/null +++ b/LeadKit/0.9.32/LeadKit.podspec @@ -0,0 +1,108 @@ +Pod::Spec.new do |s| + s.name = "LeadKit" + s.version = "0.9.32" + s.summary = "iOS framework with a bunch of tools for rapid development" + s.homepage = "https://github.com/TouchInstinct/LeadKit" + s.license = "Apache License, Version 2.0" + s.author = "Touch Instinct" + s.source = { :git => "https://github.com/TouchInstinct/LeadKit.git", :tag => s.version } + s.platform = :ios, '9.0' + + s.subspec 'UIColorHex' do |ss| + ss.ios.deployment_target = '8.0' + ss.tvos.deployment_target = '9.0' + ss.watchos.deployment_target = '2.0' + + ss.source_files = "Sources/Extensions/UIColor/UIColor+Hex.swift" + end + + s.subspec 'Core' do |ss| + ss.ios.deployment_target = '9.0' + ss.tvos.deployment_target = '9.0' + ss.watchos.deployment_target = '2.0' + + ss.source_files = "Sources/**/*.swift" + ss.watchos.exclude_files = [ + "Sources/Classes/Controllers/**/*", + "Sources/Classes/Views/SeparatorRowBox/*", + "Sources/Classes/Views/SeparatorCell/*", + "Sources/Classes/Views/EmptyCell/*", + "Sources/Classes/Views/LabelTableViewCell/*", + "Sources/Classes/DataLoading/PaginationDataLoading/PaginationWrapper.swift", + "Sources/Classes/Views/XibView/*", + "Sources/Classes/Views/SpinnerView/*", + "Sources/Classes/Views/DefaultPlaceholders/*", + "Sources/Classes/Views/CollectionViewWrapperView/*", + "Sources/Classes/Views/TableViewWrapperView/*", + "Sources/Classes/Views/BasePlaceholderView/*", + "Sources/Classes/Views/CustomizableButton/*", + "Sources/Classes/Search/*", + "Sources/Enums/Search/*", + "Sources/Extensions/CABasicAnimation/*", + "Sources/Extensions/CGFloat/CGFloat+Pixels.swift", + "Sources/Extensions/NetworkService/NetworkService+RxLoadImage.swift", + "Sources/Extensions/DataLoading/GeneralDataLoading/GeneralDataLoadingController+DefaultImplementation.swift", + "Sources/Extensions/DataLoading/PaginationDataLoading/*", + "Sources/Extensions/Support/UIScrollView+Support.swift", + "Sources/Extensions/Support/UINavigationItem+Support.swift", + "Sources/Extensions/TableKit/**/*.swift", + "Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift", + "Sources/Extensions/Array/Array+RowExtensions.swift", + "Sources/Extensions/Drawing/UIImage/*", + "Sources/Extensions/UIKit/**/*.swift", + "Sources/Extensions/Views/ViewBackground/*", + "Sources/Extensions/Views/SeparatorCell/*", + "Sources/Extensions/Views/ConfigurableView/*", + "Sources/Extensions/Views/PlaceholderConfigurable/*", + "Sources/Protocols/UIKit/**/*.swift", + "Sources/Protocols/LoadingIndicator.swift", + "Sources/Protocols/DataLoading/PaginationDataLoading/PaginationWrappable.swift", + "Sources/Protocols/DataLoading/GeneralDataLoading/GeneralDataLoadingController.swift", + "Sources/Protocols/Views/SeparatorCell/*", + "Sources/Protocols/Views/PlaceholderConfigurable/*", + "Sources/Protocols/TableKit/**/*", + "Sources/Protocols/Controllers/SearchResultsViewController.swift", + "Sources/Structures/Views/AnyLoadingIndicator.swift", + "Sources/Structures/DrawingOperations/CALayerDrawingOperation.swift", + "Sources/Structures/DrawingOperations/RoundDrawingOperation.swift", + "Sources/Structures/DrawingOperations/BorderDrawingOperation.swift", + "Sources/Structures/DataLoading/PaginationDataLoading/*" + ] + ss.tvos.exclude_files = [ + "Sources/Classes/Controllers/BaseTableContentController.swift", + "Sources/Classes/Views/SeparatorRowBox/*", + "Sources/Classes/Views/SeparatorCell/*", + "Sources/Classes/Views/EmptyCell/*", + "Sources/Classes/Views/LabelTableViewCell/*", + "Sources/Classes/Views/CustomizableButton/*", + "Sources/Classes/DataLoading/PaginationDataLoading/PaginationWrapper.swift", + "Sources/Classes/Search/*", + "Sources/Structures/Drawing/CALayerDrawingOperation.swift", + "Sources/Enums/Search/*", + "Sources/Extensions/DataLoading/PaginationDataLoading/*", + "Sources/Extensions/Support/UIScrollView+Support.swift", + "Sources/Extensions/Support/UINavigationItem+Support.swift", + "Sources/Extensions/TableKit/**/*.swift", + "Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift", + "Sources/Extensions/Array/Array+RowExtensions.swift", + "Sources/Extensions/Views/SeparatorCell/*", + "Sources/Protocols/DataLoading/PaginationDataLoading/PaginationWrappable.swift", + "Sources/Protocols/Views/SeparatorCell/*", + "Sources/Protocols/TableKit/**/*", + "Sources/Protocols/Controllers/SearchResultsViewController.swift", + "Sources/Structures/DataLoading/PaginationDataLoading/*" + ] + + ss.dependency "RxSwift", '~> 4' + ss.dependency "RxCocoa", '~> 4' + ss.dependency "RxAlamofire", '~> 4' + ss.dependency "SwiftDate", '~> 6' + + ss.ios.dependency "TableKit", '~> 2.8' + ss.ios.dependency "SnapKit", '~> 4.0.0' + ss.ios.dependency "UIScrollView-InfiniteScroll", '~> 1.1.0' + end + + s.default_subspec = 'Core' + +end From 5a7009a61ca024580ccae627360d124ef837cb33 Mon Sep 17 00:00:00 2001 From: krasich74 Date: Thu, 3 Sep 2020 14:59:37 +0300 Subject: [PATCH 2/2] Update LeadKit podspecs --- LeadKit/0.10.0/LeadKit.podspec | 107 +++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 LeadKit/0.10.0/LeadKit.podspec diff --git a/LeadKit/0.10.0/LeadKit.podspec b/LeadKit/0.10.0/LeadKit.podspec new file mode 100644 index 0000000..a1d3b20 --- /dev/null +++ b/LeadKit/0.10.0/LeadKit.podspec @@ -0,0 +1,107 @@ +Pod::Spec.new do |s| + s.name = "LeadKit" + s.version = "0.10.0" + s.summary = "iOS framework with a bunch of tools for rapid development" + s.homepage = "https://github.com/TouchInstinct/LeadKit" + s.license = "Apache License, Version 2.0" + s.author = "Touch Instinct" + s.source = { :git => "https://github.com/TouchInstinct/LeadKit.git", :tag => s.version } + s.platform = :ios, '10.0' + s.swift_versions = ['5.0'] + + s.subspec 'UIColorHex' do |ss| + ss.ios.deployment_target = '8.0' + ss.tvos.deployment_target = '9.0' + ss.watchos.deployment_target = '2.0' + + ss.source_files = "Sources/Extensions/UIColor/UIColor+Hex.swift" + end + + s.subspec 'Core' do |ss| + ss.ios.deployment_target = '10.0' + ss.tvos.deployment_target = '10.0' + ss.watchos.deployment_target = '3.0' + + ss.source_files = "Sources/**/*.swift" + ss.watchos.exclude_files = [ + "Sources/Classes/Controllers/**/*", + "Sources/Classes/Views/SeparatorRowBox/*", + "Sources/Classes/Views/SeparatorCell/*", + "Sources/Classes/Views/EmptyCell/*", + "Sources/Classes/Views/LabelTableViewCell/*", + "Sources/Classes/DataLoading/PaginationDataLoading/PaginationWrapper.swift", + "Sources/Classes/Views/XibView/*", + "Sources/Classes/Views/SpinnerView/*", + "Sources/Classes/Views/DefaultPlaceholders/*", + "Sources/Classes/Views/CollectionViewWrapperView/*", + "Sources/Classes/Views/TableViewWrapperView/*", + "Sources/Classes/Views/BasePlaceholderView/*", + "Sources/Classes/Views/CustomizableButton/*", + "Sources/Classes/Search/*", + "Sources/Enums/Search/*", + "Sources/Extensions/CABasicAnimation/*", + "Sources/Extensions/CGFloat/CGFloat+Pixels.swift", + "Sources/Extensions/NetworkService/NetworkService+RxLoadImage.swift", + "Sources/Extensions/DataLoading/GeneralDataLoading/GeneralDataLoadingController+DefaultImplementation.swift", + "Sources/Extensions/DataLoading/PaginationDataLoading/*", + "Sources/Extensions/Support/UINavigationItem+Support.swift", + "Sources/Extensions/TableKit/**/*.swift", + "Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift", + "Sources/Extensions/Array/Array+RowExtensions.swift", + "Sources/Extensions/Drawing/UIImage/*", + "Sources/Extensions/UIKit/**/*.swift", + "Sources/Extensions/Views/ViewBackground/*", + "Sources/Extensions/Views/SeparatorCell/*", + "Sources/Extensions/Views/ConfigurableView/*", + "Sources/Extensions/Views/PlaceholderConfigurable/*", + "Sources/Protocols/UIKit/**/*.swift", + "Sources/Protocols/LoadingIndicator.swift", + "Sources/Protocols/DataLoading/PaginationDataLoading/PaginationWrappable.swift", + "Sources/Protocols/DataLoading/GeneralDataLoading/GeneralDataLoadingController.swift", + "Sources/Protocols/Views/SeparatorCell/*", + "Sources/Protocols/Views/PlaceholderConfigurable/*", + "Sources/Protocols/TableKit/**/*", + "Sources/Protocols/Controllers/SearchResultsViewController.swift", + "Sources/Structures/Views/AnyLoadingIndicator.swift", + "Sources/Structures/DrawingOperations/CALayerDrawingOperation.swift", + "Sources/Structures/DrawingOperations/RoundDrawingOperation.swift", + "Sources/Structures/DrawingOperations/BorderDrawingOperation.swift", + "Sources/Structures/DataLoading/PaginationDataLoading/*" + ] + ss.tvos.exclude_files = [ + "Sources/Classes/Controllers/BaseTableContentController.swift", + "Sources/Classes/Views/SeparatorRowBox/*", + "Sources/Classes/Views/SeparatorCell/*", + "Sources/Classes/Views/EmptyCell/*", + "Sources/Classes/Views/LabelTableViewCell/*", + "Sources/Classes/Views/CustomizableButton/*", + "Sources/Classes/DataLoading/PaginationDataLoading/PaginationWrapper.swift", + "Sources/Classes/Search/*", + "Sources/Structures/Drawing/CALayerDrawingOperation.swift", + "Sources/Enums/Search/*", + "Sources/Extensions/DataLoading/PaginationDataLoading/*", + "Sources/Extensions/Support/UINavigationItem+Support.swift", + "Sources/Extensions/TableKit/**/*.swift", + "Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift", + "Sources/Extensions/Array/Array+RowExtensions.swift", + "Sources/Extensions/Views/SeparatorCell/*", + "Sources/Protocols/DataLoading/PaginationDataLoading/PaginationWrappable.swift", + "Sources/Protocols/Views/SeparatorCell/*", + "Sources/Protocols/TableKit/**/*", + "Sources/Protocols/Controllers/SearchResultsViewController.swift", + "Sources/Structures/DataLoading/PaginationDataLoading/*" + ] + + ss.dependency "RxSwift", '~> 5.1.0' + ss.dependency "RxCocoa", '~> 5.1.0' + ss.dependency "RxAlamofire", '~> 5.2.0' + ss.dependency "SwiftDate", '~> 6' + + ss.ios.dependency "TableKit", '~> 2.8' + ss.ios.dependency "SnapKit", '~> 5.0.0' + ss.ios.dependency "UIScrollView-InfiniteScroll", '~> 1.1.0' + end + + s.default_subspec = 'Core' + +end