forked from zenangst/Blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlueprints.podspec
25 lines (22 loc) · 913 Bytes
/
Blueprints.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 = "Blueprints"
s.summary = "A collection of flow layouts that is meant to make your life easier."
s.version = "0.13.1"
s.homepage = "https://github.com/zenangst/Blueprints"
s.license = 'MIT'
s.author = { "Christoffer Winterkvist" => "[email protected]" }
s.source = {
:git => "https://github.com/zenangst/Blueprints.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.osx.source_files = 'Sources/{macOS,Shared}/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end