forked from onmyway133/EasyTheme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathThemes.podspec
More file actions
24 lines (21 loc) · 764 Bytes
/
Themes.podspec
File metadata and controls
24 lines (21 loc) · 764 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 = "Themes"
s.summary = "Theme management in Swift"
s.version = "2.0.0"
s.homepage = "https://github.com/onmyway133/Themes"
s.license = 'MIT'
s.author = { "Khoa Pham" => "onmyway133@gmail.com" }
s.source = {
:git => "https://github.com/onmyway133/Themes.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/**/*'
s.tvos.source_files = 'Sources/**/*'
s.osx.source_files = 'Sources/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
end