-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathFLFMDBManager.podspec
More file actions
39 lines (24 loc) · 2 KB
/
FLFMDBManager.podspec
File metadata and controls
39 lines (24 loc) · 2 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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "FLFMDBManager"
s.version = "0.0.1"
s.summary = "FMDB 再封装,面向模型"
s.description = <<-DESC
FMDB 再封装,面向模型,只需要传入模型或模型数组
DESC
s.homepage = "https://github.com/gitkong/FLFMDBManager"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "gitKong" => "13751855378@163.com" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.source = { :git => "https://github.com/gitkong/FLFMDBManager.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "FLFMDBManagerDemo/FLFMDBManager/*.{h,m}"
#s.exclude_files = "Classes/Exclude"
#s.public_header_files = "FLFMDBManager/FLFMDBManager.h"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end