Files
DeviceKit/DeviceKit.podspec
T
Zandor Smith 691fe8112c Release 5.0.0 (#338)
* Prepare release of 4.9.0.

* Update changelog.

* Version bump. (v5.0.0)

* Update CHANGELOG.

* Update changelog to include PR #303

* Fix deployment targets in podspec.

* Update deployment target in Package.swift.
2022-11-01 22:48:39 +01:00

27 lines
1.1 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'DeviceKit'
s.version = '5.0.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