mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 15:08:50 +00:00
Summary: Followup from #1068 The `NSIndexPath` methods we use **are not** available <10.11. In theory this has always been "broken" b/c older macOS versions would crash at runtime when trying to use these methods. Normally this would be breaking change, but I can't imagine anyone is using IGListKit on the mac targeting 10.10 and shipping a working app. cc jessesquires for thoughts This should be the last remaining item before we get a green badge. (note that 10.11 was released 9/30/15 which is about 2 weeks before the public IGListKit release) Closes https://github.com/Instagram/IGListKit/pull/1080 Differential Revision: D6894369 Pulled By: rnystrom fbshipit-source-id: e5992c7bba68b21704af6bc8fb889b5427266954
68 lines
1.6 KiB
JSON
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.11"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|