forked from onmyway133/Snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Snowflake.podspec
28 lines (24 loc) · 937 Bytes
/
Snowflake.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
Pod::Spec.new do |s|
s.name = "Snowflake"
s.summary = "A short description of Snowflake."
s.version = "0.1.0"
s.homepage = "https://github.com/onmyway133/Snowflake"
s.license = 'MIT'
s.author = { "Khoa Pham" => "[email protected]" }
s.source = {
:git => "https://github.com/onmyway133/Snowflake.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/onmyway133'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'
# s.ios.frameworks = 'UIKit', 'Foundation'
# s.osx.frameworks = 'Cocoa', 'Foundation'
s.dependency 'Reindeer'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end