FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DiffableDataSources/DiffableDataSources.podspec at master · ra1028/DiffableDataSources · GitHub
ra1028
/
DiffableDataSources
Public
Notifications
You must be signed in to change notification settings
Fork
68
Star
858
Code
Issues
13
Pull requests
7
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
DiffableDataSources
/
DiffableDataSources.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (26 loc) · 1.3 KB
Breadcrumbs
DiffableDataSources
/
DiffableDataSources.podspec
Copy path
File metadata and controls
31 lines (26 loc) · 1.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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'
=>
'r.fe51028.r@gmail.com'
}
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
Back
|
FazBrowse Home
|
New Git URL