mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 15:08:50 +00:00
Summary: Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1385 I attempted to work the two frameworks into a single podspec, but it didn't really work that well. Instead, let's just split them into two podspec files - this should work fine, and more closely follows the Carthage/Xcode behavior. This should address #1382. Note that the attached project does need to be edited, because we also need to manually specify the `IGListDiffKit` pod location. This issue will go away with the release of 4.0. Reviewed By: iperry90 Differential Revision: D18449843 fbshipit-source-id: 2750aee1ba39d21b9f1b3521ea8911929ae728b1
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "IGListKit",
|
|
"version": "3.4.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": "3.4.0",
|
|
"branch": "stable"
|
|
},
|
|
"dependencies": {
|
|
"IGListDiffKit": [
|
|
"= 3.4.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++"
|
|
}
|
|
}
|