-
Notifications
You must be signed in to change notification settings - Fork 69
/
DiffableDataSources.podspec
31 lines (26 loc) · 1.3 KB
/
DiffableDataSources.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
spec.name = 'DiffableDataSources'
spec.version = `cat .version`
spec.author = { 'ra1028' => '[email protected]' }
spec.homepage = 'https://github.com/ra1028/DiffableDataSources'
spec.documentation_url = 'https://ra1028.github.io/DiffableDataSources'
spec.summary = 'A library for backporting UITableView/UICollectionViewDiffableDataSource.'
spec.source = { :git => 'https://github.com/ra1028/DiffableDataSources.git', :tag => spec.version.to_s }
spec.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
spec.requires_arc = true
spec.swift_versions = ["5.0", "5.1"]
differenekit_version = '~> 1.1'
spec.ios.dependency 'DifferenceKit/UIKitExtension', differenekit_version
spec.tvos.dependency 'DifferenceKit/UIKitExtension', differenekit_version
spec.osx.dependency 'DifferenceKit/AppKitExtension', differenekit_version
spec.source_files = 'Sources/Internal/*.swift', 'Sources/*.swift'
spec.ios.source_files = 'Sources/UIKit/*.swift'
spec.tvos.source_files = 'Sources/UIKit/*.swift'
spec.osx.source_files = 'Sources/AppKit/*.swift'
spec.ios.frameworks = 'UIKit'
spec.tvos.frameworks = 'UIKit'
spec.osx.frameworks = 'Appkit'
spec.ios.deployment_target = '9.0'
spec.tvos.deployment_target = '9.0'
spec.osx.deployment_target = '10.11'
end