IGListKit/Examples/Examples-iOS/Pods/Local Podspecs/IGListKit.podspec.json
Ryan Nystrom 65a5e6de05 Fix binding SC deselection crash and publish 3.1.1
Summary:
- Fixed #918 by checking `respondsToSelector:` (boo optionals)
- Cut 3.1.1 for immediate publish

- [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.
Closes https://github.com/Instagram/IGListKit/pull/921

Differential Revision: D5748009

Pulled By: rnystrom

fbshipit-source-id: b387b3988abc785f312bc47ac003851283972d7a
2017-08-31 12:51:10 -07:00

68 lines
1.6 KiB
JSON

{
"name": "IGListKit",
"version": "3.1.1",
"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": "BSD"
},
"authors": "Instagram",
"social_media_url": "https://twitter.com/fbOpenSource",
"source": {
"git": "https://github.com/Instagram/IGListKit.git",
"tag": "3.1.1",
"branch": "stable"
},
"default_subspecs": "Default",
"requires_arc": true,
"platforms": {
"ios": "8.0",
"tvos": "9.0",
"osx": "10.10"
},
"ios": {
"frameworks": "UIKit"
},
"tvos": {
"frameworks": "UIKit"
},
"osx": {
"frameworks": "Cocoa"
},
"libraries": "c++",
"pod_target_xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++11",
"CLANG_CXX_LIBRARY": "libc++"
},
"subspecs": [
{
"name": "Diffing",
"source_files": "Source/Common/**/*.{h,m,mm}",
"private_header_files": "Source/Common/Internal/*.h"
},
{
"name": "Default",
"dependencies": {
"IGListKit/Diffing": [
]
},
"ios": {
"source_files": "Source/**/*.{h,m,mm}",
"private_header_files": [
"Source/Internal/*.h",
"Source/Common/Internal/*.h"
]
},
"tvos": {
"source_files": "Source/**/*.{h,m,mm}",
"private_header_files": [
"Source/Internal/*.h",
"Source/Common/Internal/*.h"
]
}
}
]
}