-
Notifications
You must be signed in to change notification settings - Fork 9
/
UAParserSwift.podspec
20 lines (20 loc) · 1.02 KB
/
UAParserSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "UAParserSwift"
s.version = "1.2.1"
s.summary = "User-Agent parser for swift (port of ua-parser-js)"
s.description = <<-DESC
UAParserSwift is a Swift-based library to parse User Agent string; it's a port of ua-parser-js by Faisal Salman created to be mainly used in Swift Server Side applications (but compatible with all Apple's platforms too).
DESC
s.homepage = "https://github.com/malcommac/UAParserSwift.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "me@danielemargutti.com" }
s.social_media_url = "http://twitter.com/danielemargutti"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/malcommac/UAParserSwift.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation"
s.swift_versions = ['5.0', '5.1', '5.3']
end