forked from zenangst/Family
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Family.podspec
25 lines (22 loc) · 929 Bytes
/
Family.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
Pod::Spec.new do |s|
s.name = "Family"
s.summary = "A child view controller framework that makes setting up your parent controllers as easy as pie."
s.version = "1.1.1"
s.homepage = "https://github.com/zenangst/Family"
s.license = 'MIT'
s.author = { "Christoffer Winterkvist" => "[email protected]" }
s.source = {
:git => "https://github.com/zenangst/Family.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/zenangst'
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS+tvOS,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS+tvOS,Shared}/**/*'
s.macos.source_files = 'Sources/{macOS,Shared}/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end