mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 06:58:26 +00:00
Summary: Followup from #1068 The `NSIndexPath` methods we use **are not** available <10.11. In theory this has always been "broken" b/c older macOS versions would crash at runtime when trying to use these methods. Normally this would be breaking change, but I can't imagine anyone is using IGListKit on the mac targeting 10.10 and shipping a working app. cc jessesquires for thoughts This should be the last remaining item before we get a green badge. (note that 10.11 was released 9/30/15 which is about 2 weeks before the public IGListKit release) Closes https://github.com/Instagram/IGListKit/pull/1080 Differential Revision: D6894369 Pulled By: rnystrom fbshipit-source-id: e5992c7bba68b21704af6bc8fb889b5427266954
6 lines
128 B
Ruby
6 lines
128 B
Ruby
use_frameworks!
|
|
platform :osx, '10.11'
|
|
|
|
target 'IGListKitExamples' do
|
|
pod 'IGListKit', :path => '../../IGListKit.podspec'
|
|
end
|