-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathVaccine.podspec
More file actions
24 lines (21 loc) · 859 Bytes
/
Vaccine.podspec
File metadata and controls
24 lines (21 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "Vaccine"
s.summary = "Make your apps immune to recompile-disease."
s.version = "0.15.1"
s.homepage = "https://github.com/zenangst/Vaccine"
s.license = 'MIT'
s.source = {
:git => "https://github.com/zenangst/Vaccine.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/zenangst'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.ios.source_files = 'Source/{iOS+tvOS,iOS,Shared}/**/*'
s.tvos.source_files = 'Source/{iOS+tvOS,tvOS,Shared}/**/*'
s.osx.source_files = 'Source/{macOS,Shared}/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
end