mirror of
https://github.com/Instagram/IGListKit
synced 2026-04-21 21:47:34 +00:00
Summary: Progress on #270. - Setup basic, empty example project - Setup test target and add tests that work for macOS - Update changelog - Update travis-ci Closes https://github.com/Instagram/IGListKit/pull/328 Differential Revision: D4325876 Pulled By: jessesquires fbshipit-source-id: 342963ce5103d3980c697655e1f1a9b6f3f1c520
63 lines
2 KiB
Ruby
63 lines
2 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'IGListKit'
|
|
s.version = '2.0.0'
|
|
s.summary = 'A data-driven UICollectionView framework.'
|
|
s.homepage = 'https://github.com/Instagram/IGListKit'
|
|
s.documentation_url = 'https://instagram.github.io/IGListKit'
|
|
s.description = 'A data-driven UICollectionView framework for building fast and flexible lists.'
|
|
|
|
s.license = { :type => 'BSD' }
|
|
s.authors = 'Instagram'
|
|
s.social_media_url = 'https://twitter.com/fbOpenSource'
|
|
s.source = {
|
|
:git => 'https://github.com/Instagram/IGListKit.git',
|
|
:tag => s.version.to_s,
|
|
:branch => 'stable'
|
|
}
|
|
|
|
s.ios.source_files = 'Source/**/*.{h,m,mm}'
|
|
s.ios.private_header_files = 'Source/Internal/*.h'
|
|
|
|
s.tvos.source_files = 'Source/**/*.{h,m,mm}'
|
|
s.tvos.private_header_files = 'Source/Internal/*.h'
|
|
|
|
s.osx.source_files = [
|
|
'Source/IGListIndexSetResult.{h,m}',
|
|
'Source/IGListDiff.{h,mm}',
|
|
'Source/NSNumber+IGListDiffable.{h,m}',
|
|
'Source/NSString+IGListDiffable.{h,m}',
|
|
'Source/IGListMoveIndexPath.{h,m}',
|
|
'Source/IGListMoveIndex.{h,m}',
|
|
'Source/IGListIndexPathResult.{h,m}',
|
|
'Source/IGListDiffable.h',
|
|
'Source/IGListMacros.h',
|
|
'Source/IGListExperiments.h',
|
|
'Source/IGListKit.h',
|
|
'Source/Internal/IGListMoveIndexInternal.h',
|
|
'Source/Internal/IGListIndexPathResultInternal.h',
|
|
'Source/Internal/IGListIndexSetResultInternal.h',
|
|
'Source/Internal/IGListMoveIndexPathInternal.h'
|
|
]
|
|
s.osx.private_header_files = [
|
|
'Source/Internal/IGListMoveIndexInternal.h',
|
|
'Source/Internal/IGListIndexPathResultInternal.h',
|
|
'Source/Internal/IGListIndexSetResultInternal.h',
|
|
'Source/Internal/IGListMoveIndexPathInternal.h'
|
|
]
|
|
|
|
s.requires_arc = true
|
|
|
|
s.ios.deployment_target = '8.0'
|
|
s.tvos.deployment_target = '9.0'
|
|
s.osx.deployment_target = '10.11'
|
|
|
|
s.ios.frameworks = 'UIKit'
|
|
s.tvos.frameworks = 'UIKit'
|
|
s.osx.frameworks = 'Cocoa'
|
|
|
|
s.library = 'c++'
|
|
s.pod_target_xcconfig = {
|
|
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
|
|
'CLANG_CXX_LIBRARY' => 'libc++'
|
|
}
|
|
end
|