Initial commit

fbshipit-source-id: c38b897b9e2b87c782e0e01b0145d9189dc7f9d8
This commit is contained in:
FBShipIt
2016-09-07 15:37:59 -07:00
commit cdc796746a
299 changed files with 38915 additions and 0 deletions

30
IGListKit.podspec Normal file
View File

@@ -0,0 +1,30 @@
Pod::Spec.new do |s|
s.name = 'IGListKit'
s.version = '1.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.source_files = 'Source/**/*.{h,m,mm}'
s.private_header_files = 'Source/Internal/*.h'
s.requires_arc = true
s.platform = :ios, '8.0'
s.frameworks = 'UIKit'
s.library = 'c++'
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end