wip cocoapods

This commit is contained in:
Siyu Yue 2023-02-05 14:17:31 -08:00
parent 3bf3b18a37
commit 783e547116
1 changed files with 17 additions and 0 deletions

17
ListDiffUI.podspec Normal file
View File

@ -0,0 +1,17 @@
Pod::Spec.new do |s|
s.name = 'ListDiffUI'
s.version = '0.1.1'
s.summary = 'A descriptive, diffable data source for UICollectionView.'
s.homepage = 'https://github.com/siyuyue/ListDiffUI'
s.author = 'Siyu Yue'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/siyuyue/ListDiffUI.git', :tag => "#{s.version}" }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'Sources/**/*.swift'
s.dependency 'ListDiff', '~> 0.2.0'
s.xcconfig = {
'IPHONEOS_DEPLOYMENT_TARGET' => '11.0',
'SWIFT_VERSION' => '5.0'
}
end