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/1377 This splits the diffing-only components from `IGListKit` out into a separate library, `IGListDiffKit`, allowing them to be used independently of the rest of `IGListKit`. We've found that the diffing components of the library are useful independently of the rest of the `UICollectionView` infrastructure, and separating the libraries allows apps to take advantage of those components without paying the full binary size cost of `IGListKit`. The diffing components are available as a subspec in Cocoapods, and as an independent framework in Carthage and direct Xcode project import (i.e. Git submodules). This is a breaking change, necessitating a major version bump, although it should have only minor impact for projects using the umbrella header `IGListKit.h`, as that header continues to import the diffing utilities. In particular, for a project using Cocoapods and importing `IGListKit.h`, there should be no code changes required. Reviewed By: calimarkus Differential Revision: D18114249 fbshipit-source-id: 363b5a427e32800bbc6e82f897230963b4167245
71 lines
1.7 KiB
JSON
71 lines
1.7 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"
|
|
},
|
|
"header_mappings_dir": "Source",
|
|
"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++",
|
|
"HEADER_SEARCH_PATHS": "$(PODS_TARGET_SRCROOT)/Source"
|
|
},
|
|
"subspecs": [
|
|
{
|
|
"name": "Diffing",
|
|
"source_files": "Source/IGListDiffKit/**/*.{h,m,mm}",
|
|
"private_header_files": "Source/IGListDiffKit/Internal/*.h"
|
|
},
|
|
{
|
|
"name": "Default",
|
|
"dependencies": {
|
|
"IGListKit/Diffing": [
|
|
|
|
]
|
|
},
|
|
"ios": {
|
|
"source_files": "Source/IGListKit/**/*.{h,m,mm}",
|
|
"private_header_files": [
|
|
"Source/IGListKit/Internal/*.h"
|
|
]
|
|
},
|
|
"tvos": {
|
|
"source_files": "Source/IGListKit/**/*.{h,m,mm}",
|
|
"private_header_files": [
|
|
"Source/IGListKit/Internal/*.h"
|
|
]
|
|
},
|
|
"osx": {
|
|
"source_files": "Source/IGListKit/IGListKit.h"
|
|
}
|
|
}
|
|
]
|
|
}
|