-
Notifications
You must be signed in to change notification settings - Fork 22
/
UTIKit.podspec
37 lines (26 loc) · 1.08 KB
/
UTIKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "UTIKit"
s.version = "2.1.0"
s.summary = "UTIKit is an UTI (Uniform Type Identifier) wrapper for Swift."
s.description = <<-DESC
UTIKit is a full featured library including entire UTI functions.
* Convertibility
* Filename extension
* MIME type
* OSType (OS X only)
* Pasteboard type (OS X only)
* Equality
* Conformance
* and others…
DESC
s.homepage = "https://github.com/cockscomb/UTIKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hiroki Kato" => "[email protected]" }
s.social_media_url = "http://twitter.com/cockscomb"
s.swift_version = '5.0'
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/cockscomb/UTIKit.git", :tag => "#{s.version}" }
s.source_files = "UTIKit/**/*.swift"
s.requires_arc = true
end