mirror of
https://github.com/devicekit/DeviceKit.git
synced 2026-05-17 10:20:34 +00:00
96ee1f425a
* Adjust GitHub Action simulators used for testing and lock macos version. * Adds compilation support for visionOS. Fixes https://github.com/devicekit/DeviceKit/issues/355 * ✨ Add support for new iPhones Co-Authored-By: Johannes Ebeling <14994778+technocidal@users.noreply.github.com> * ✨ Added generated gyb file Co-Authored-By: Johannes Ebeling <14994778+technocidal@users.noreply.github.com> * 🐛 Fixed missing identifier for 15 Plus Co-Authored-By: Johannes Ebeling <14994778+technocidal@users.noreply.github.com> * ✨ Add Watch Series 9 * Change back to using telephoto to describe the iPhone 15 Pro Max 5x camera. See why: https://github.com/devicekit/DeviceKit/issues/359#issuecomment-1722454836 * Fix tests. * Update CHANGELOG.md * Version bump. (v5.1.0) * Add missing technical specifications and image urls for devices that have them available. * new release date --------- Co-authored-by: Henry Thoma <thoma@sipgate.de> Co-authored-by: Johannes Ebeling <14994778+technocidal@users.noreply.github.com> Co-authored-by: Denise Nepraunig <denise.nepraunig@gmail.com>
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'DeviceKit'
|
|
s.version = '5.1.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 = '11.0'
|
|
s.tvos.deployment_target = '11.0'
|
|
s.watchos.deployment_target = '4.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
|