IGListKit/IGListKit.podspec
Jesse Squires 4e42712e5b fixup common files and podspec, #270
Summary:
- Add missing common files
- Fix podspec for common files
- Pod install all examples

Reviewed By: rnystrom

Differential Revision: D4350871

fbshipit-source-id: 708ebe6ce66caed75af5b2ac18920dcf45567d16
2016-12-19 21:44:13 -08:00

48 lines
1.3 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',
'Source/Common/Internal/*.h'
]
s.tvos.source_files = 'Source/**/*.{h,m,mm}'
s.tvos.private_header_files = [
'Source/Internal/*.h',
'Source/Common/Internal/*.h'
]
s.osx.source_files = 'Source/Common/**/*.{h,m,mm}'
s.osx.private_header_files = 'Source/Common/Internal/*.h'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.8'
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