-
Notifications
You must be signed in to change notification settings - Fork 4
/
ZTUIStyle.podspec
30 lines (23 loc) · 1.03 KB
/
ZTUIStyle.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
29
30
Pod::Spec.new do |spec|
spec.name = "ZTUIStyle"
spec.version = "0.0.2"
spec.summary = "An easy way to make a beautiful UI style"
spec.homepage = "https://github.com/RuffianZhong/ZTUIStyle"
spec.license = "MIT"
spec.author = { "Ruffian" => "[email protected]" }
spec.platform = :ios, "9.0"
spec.source = { :git => "https://github.com/RuffianZhong/ZTUIStyle.git", :tag => spec.version }
spec.source_files = "ZTUIStyle/framework/**/*.{h,m}"
spec.requires_arc = true
spec.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
# spec.exclude_files = "Classes/Exclude"
# spec.public_header_files = "Classes/**/*.h"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end