-
Notifications
You must be signed in to change notification settings - Fork 1
/
PrivatePod.podspec
84 lines (61 loc) · 4.24 KB
/
PrivatePod.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Pod::Spec.new do |s|
s.name = "PrivatePod"
s.version = "1.0.0"
s.summary = "This project demonstrates how to create private cocoapod."
s.license = "MIT"
s.author = { "NixonShih" => "powerwolf543@gmail.com" }
s.social_media_url = "https://twitter.com/powerwolf543"
s.homepage = "https://twitter.com/powerwolf543"
s.platform = :ios, "10.0"
s.ios.deployment_target = '10.0'
s.source = { :git => "https://github.com/powerwolf543/PrivatePodExample.git", :tag => s.version }
s.source_files = "PrivatePod/*.swift"
s.frameworks = 'Foundation', 'UIKit'
s.resources = ["PrivatePod/*.xcassets", "PrivatePod/xib/*.xib"]
#s.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL[config=Debug]' => '-Owholemodule' }
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
# s.description = <<-DESC
# s.homepage = "http://EXAMPLE/PrivatePod"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.license = "MIT (example)"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# ss.author = { "NixonShih" => "p@yahoo.com.tw" }
# Or just: s.author = "NixonShih"
# s.authors = { "NixonShih" => "p@yahoo.com.tw" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.platform = :ios
# When using multiple platforms
# s.ios.deployment_target = "5.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.source = { :git => "http://EXAMPLE/PrivatePod.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.source_files = "Classes", "Classes/**/*.{h,m}"
# s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/**/*.h"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.
# s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end