-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLLPublicTest.podspec
More file actions
41 lines (25 loc) · 1.27 KB
/
LLPublicTest.podspec
File metadata and controls
41 lines (25 loc) · 1.27 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
Pod::Spec.new do |spec|
spec.name = "LLPublicTest"
spec.version = "0.0.2"
spec.summary = "Description of LLTest. 短描述"
spec.description = <<-DESC
A long description of LLTest. 长描述
DESC
spec.homepage = "https://github.com/xuwenlang/LLTest"
spec.license = "MIT"
spec.author = { "徐文浪" => "1542295969@qq.com" }
spec.platform = :ios, "5.0"
spec.source = { :git => "https://github.com/xuwenlang/LLTest.git", :tag => "#{spec.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
spec.source_files = "PublicTestDemo", "PublicTestDemo/**/*.{h,m}"
# spec.public_header_files = "Classes/**/*.h"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
spec.requires_arc = true
end