forked from Nirma/UIDeviceComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UIDeviceComplete.podspec
22 lines (18 loc) · 979 Bytes
/
UIDeviceComplete.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'UIDeviceComplete'
s.version = '2.8.1'
s.summary = 'UIDevice extensions for device Model, Family, Screen size and more'
s.description = <<-DESC
UIDevice is handy and serves a purpose but it does lack the ability to do things like
provide the screen size in inches or provide specific device model or family info.
Thats where this library comes in, a super light weight and simple set of extensions to
UIDevice that make UIDevice even more fun to work with.
DESC
s.homepage = 'https://github.com/Nirma/UIDeviceComplete'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nicholas Maccharoli' => '[email protected]' }
s.source = { :git => 'https://github.com/Nirma/UIDeviceComplete.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'Sources/*.swift'
end