forked from 1024jp/GzipSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GzipSwift.podspec
26 lines (22 loc) · 902 Bytes
/
GzipSwift.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
Pod::Spec.new do |s|
s.name = "GzipSwift"
s.version = "5.1.1"
s.swift_version = '5.0'
s.summary = "Swift framework that enables gzip/gunzip Data using zlib."
s.homepage = "https://github.com/1024jp/GzipSwift"
s.license = { :type => "MIT",
:file => "LICENSE" }
s.author = { "1024jp" => "1024jp@wolfrosch.com" }
s.social_media_url = "https://twitter.com/1024jp"
s.source = { :git => "https://github.com/1024jp/GzipSwift.git",
:tag => s.version }
s.source_files = 'Sources/Gzip/*.swift'
s.module_name = 'Gzip'
s.osx.deployment_target = '10.9'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.library = 'z'
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
end