mirror of
https://github.com/devicekit/DeviceKit.git
synced 2026-05-17 10:20:34 +00:00
8bb5d4b602
* Initial plan * Add iPhone 17 series and Apple Watch Ultra 3/Series 11 to Device.swift.gyb template * Fix Apple Watch Ultra 3 and Series 11 to use S10 chip instead of S11 * Add changelog entry for 5.7.0 and update version numbers - Add changelog entry for version 5.7.0 with September 12th release date - Include table of new iPhone 17 series and Apple Watch devices - Update version to 5.7.0 in README.md, DeviceKit.podspec, and project.pbxproj - Follow pattern from previous version releases * Fix changelog. * Build generated file after copilot gyb implementation. * Make iPhone Air plus sized. * More device attribute fixes. * Update tests after adding new devices. * Add changelog entry for Series 9 fix. --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: Zandor300 <6069593+Zandor300@users.noreply.github.com>
29 lines
1.2 KiB
Ruby
29 lines
1.2 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'DeviceKit'
|
|
s.version = '5.7.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 = '13.0'
|
|
s.tvos.deployment_target = '13.0'
|
|
s.watchos.deployment_target = '7.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.resource_bundles = { 'DeviceKit' => 'Source/PrivacyInfo.xcprivacy' }
|
|
|
|
s.requires_arc = true
|
|
end
|