IGListKit/IGListSwiftKit.podspec
Koen Punt f1ceedc39b Refine dequeueReusableCellOfClass methods for Swift (#1388)
Summary:
## Changes in this pull request

Initial suggested implementation for https://github.com/Instagram/IGListKit/issues/1387.

### Checklist

- [x] All tests pass. Demo project builds and runs.
- [x] I added tests, an experiment, or detailed why my change isn't tested.
- [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md)
Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1388

Reviewed By: lorixx

Differential Revision: D18687735

Pulled By: natestedman

fbshipit-source-id: f9cc70ced3f788771fd3f0443b56befbedb04166
2019-12-19 08:13:22 -08:00

35 lines
970 B
Ruby

Pod::Spec.new do |s|
s.name = 'IGListSwiftKit'
s.version = `scripts/version.sh`
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 => 'MIT' }
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.dependency 'IGListKit', "= #{s.version}"
[s.ios, s.tvos].each do |os|
os.source_files = [
'Source/IGListSwiftKit/**/*.{swift}',
]
end
s.requires_arc = true
s.swift_versions = ['4.0', '5.0', '5.1']
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.ios.frameworks = 'UIKit'
s.tvos.frameworks = 'UIKit'
end