-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMySwiftLib.podspec
More file actions
52 lines (30 loc) Β· 2.71 KB
/
Copy pathMySwiftLib.podspec
File metadata and controls
52 lines (30 loc) Β· 2.71 KB
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
Pod::Spec.new do |spec|
# βββ Spec Metadata ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.name = "SampleLib"
spec.version = "0.0.1"
spec.summary = "This is my SampleLib."
spec.homepage = "https://github.com/strysk/sample_pod"
# βββ Spec License βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.license = "MIT"
# βββ Author Metadata βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.author = "Ryosuke Seto"
# βββ Platform Specifics βββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.platform = :ios
# βββ Source Location ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.source = { :git => "https://github.com/strysk/sample_pod.git", :tag => "#{spec.version}" }
# βββ Source Code ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.source_files = ["SampleLib/**/*.swift"]
# βββ Resources ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
# βββ Project Linking ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# βββ Project Settings βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
# spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end