-
Notifications
You must be signed in to change notification settings - Fork 2
/
DeviceIdentificator.podspec
23 lines (20 loc) · 1.03 KB
/
DeviceIdentificator.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "DeviceIdentificator"
s.version = "3.0.4"
s.swift_version = '5.0'
s.summary = "UIDeviceExtension to fetch current device info such commercial name (iPhone X instead of iPhone10,3)."
s.description = <<-DESC
UIDevice extension written in Swift to fetch current device info such commercial name (iPhone X instead of iPhone10,3).
Return an enum witch identifies the device.
Support Objective-C by adding a wrapper for device name.
DESC
s.homepage = "https://github.com/sebastianvarela/DeviceIdentificator"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Sebastián Varela" => "[email protected]" }
s.social_media_url = "http://twitter.com/skirmish84"
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '10.1'
s.source = { :git => "https://github.com/sebastianvarela/DeviceIdentificator.git", :tag => "v#{s.version}" }
s.source_files = "Source", "Source/**/*.{swift}"
s.framework = "UIKit"
end