IGListKit/Examples/Examples-iOS/Pods/Local Podspecs/IGListKit.podspec.json
Koen Punt f1ceedc39b Refine dequeueReusableCellOfClass methods for Swift (#1388)
Summary:
## Changes in this pull request

Initial suggested implementation for https://github.com/Instagram/IGListKit/issues/1387.

### Checklist

- [x] All tests pass. Demo project builds and runs.
- [x] I added tests, an experiment, or detailed why my change isn't tested.
- [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md)
Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1388

Reviewed By: lorixx

Differential Revision: D18687735

Pulled By: natestedman

fbshipit-source-id: f9cc70ced3f788771fd3f0443b56befbedb04166
2019-12-19 08:13:22 -08:00

60 lines
1.5 KiB
JSON

{
"name": "IGListKit",
"version": "4.1.0",
"summary": "A data-driven UICollectionView framework.",
"homepage": "https://github.com/Instagram/IGListKit",
"documentation_url": "https://instagram.github.io/IGListKit",
"description": "A data-driven UICollectionView framework for building fast and flexible lists.",
"license": {
"type": "MIT"
},
"authors": "Instagram",
"social_media_url": "https://twitter.com/fbOpenSource",
"source": {
"git": "https://github.com/Instagram/IGListKit.git",
"tag": "4.1.0",
"branch": "stable"
},
"dependencies": {
"IGListDiffKit": [
"= 4.1.0"
]
},
"ios": {
"source_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/**/*.{h,m,mm}"
],
"private_header_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/Internal/*.h"
],
"frameworks": "UIKit"
},
"tvos": {
"source_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/**/*.{h,m,mm}"
],
"private_header_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/Internal/*.h"
],
"frameworks": "UIKit"
},
"osx": {
"source_files": "Source/IGListKit/IGListKit.h",
"frameworks": "Cocoa"
},
"requires_arc": true,
"platforms": {
"ios": "9.0",
"tvos": "9.0",
"osx": "10.11"
},
"libraries": "c++",
"pod_target_xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++11",
"CLANG_CXX_LIBRARY": "libc++"
}
}