Files
DeviceKit/DeviceKit.podspec
Zandor Smith 6b58d9a61e Add support for new September 14th 2021 devices. (#286)
* Add support for new September 14th 2021 devices.

* Remove support for Apple Watch Series 7.

Because it will be available on the fall, we won't know device identifiers, so it doesn't make sense to add support yet.

* Added device identifiers for the iPads and iPhones.

* Added Changelog.

* Version bump. (v4.5.0)

* well, I don't really know how to fix this now...

Co-authored-by: Denise Nepraunig <denise.nepraunig@gmail.com>
2021-09-16 21:09:54 +02:00

27 lines
1.1 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'DeviceKit'
s.version = '4.5.0'
s.summary = 'DeviceKit is a µ-framework that provides a value-type replacement of UIDevice.'
s.description = <<-DESC
`DeviceKit` is a value-type wrapper and extension of [`UIDevice`](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/). It detects both devices and different simulators.
DESC
s.homepage = 'https://github.com/devicekit/DeviceKit'
s.license = 'MIT'
s.author = 'DeviceKit'
s.social_media_url = 'https://twitter.com/dennis_weissman'
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.swift_version = '5.0'
s.source = { :git => 'https://github.com/devicekit/DeviceKit.git', :tag => s.version }
s.source_files = 'Source/Device.generated.swift'
s.requires_arc = true
end