-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathDevice.swift.podspec
More file actions
executable file
·18 lines (16 loc) · 938 Bytes
/
Device.swift.podspec
File metadata and controls
executable file
·18 lines (16 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Device.swift'
s.version = '1.2.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Super-lightweight library to detect used device'
s.homepage = 'https://github.com/schickling/Device.swift'
s.source = { :git => 'https://github.com/schickling/Device.swift.git', :tag => s.version.to_s }
s.source_files = 'Device/**/*.{swift}'
s.ios.deployment_target = '8.0'
s.frameworks = 'UIKit'
s.requires_arc = true
s.swift_version = '4.2'
s.authors = { 'Johannes Schickling' => 'schickling.j@gmail.com',
'Cody Winton' => 'cody.t.winton@gmail.com',
'Igor Kislyuk' => 'igorkislyuk@icloud.com' }
end