IGListKit/Examples/Examples-iOS/Pods/Local Podspecs/IGListKit.podspec.json
Ryan Nystrom 32a566d7c9 Regen docs for 3.0
Summary:
~~Land after #661, #730 and D5031184~~

Rebuild the docs from script. Couple notes:

- Went from 100% to 99%, does that matter? Script output says
  - > 99% documentation coverage with 2 undocumented symbols
  - Looks like `NS_SWIFT_NAME` throws documentation for a loop on `IGListDiffOption` and `IGListExperiment`
- Swift names are different, will that be a problem?

Part of #707

Closes https://github.com/Instagram/IGListKit/pull/728

Differential Revision: D5050951

Pulled By: jessesquires

fbshipit-source-id: 19249c1d34e6f253b911965114fd4ae7458d2684
2017-05-12 07:25:00 -07:00

68 lines
1.6 KiB
JSON

{
"name": "IGListKit",
"version": "3.0.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": "BSD"
},
"authors": "Instagram",
"social_media_url": "https://twitter.com/fbOpenSource",
"source": {
"git": "https://github.com/Instagram/IGListKit.git",
"tag": "3.0.0",
"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"
]
}
}
]
}