-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNZQBaseKit.podspec
More file actions
68 lines (43 loc) · 2.05 KB
/
Copy pathNZQBaseKit.podspec
File metadata and controls
68 lines (43 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Pod::Spec.new do |s|
s.name = "NZQBaseKit"
s.version = "0.0.3"
s.summary = "NZQ iOS开发基础常用框架"
s.description = <<-DESC
基础框架
DESC
s.homepage = "https://github.com/pasmall/NZQBaseKit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Lyric" => "851443090@qq.com" }
s.ios.deployment_target = "10.3"
s.swift_version = "4.1"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#
# s.source = { :git => "http://EXAMPLE/NZQBaseKit.git", :tag => "#{s.version}" }
s.source = { :git => 'https://github.com/pasmall/NZQBaseKit.git', :branch => 'master' }
# s.source_files = "Classes", "Classes/**/*.{h,m}"
s.source_files = 'NZQBaseKit/Classes/**/*'
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.frameworks = 'UIKit'
s.dependency 'MJRefresh'
s.dependency 'Alamofire'
s.dependency 'SwiftyJSON'
s.dependency 'AlamofireImage'
s.dependency 'SnapKit'
s.dependency 'Hero'
s.dependency 'CollectionKit'
s.dependency 'ESTabBarController-swift'
# ――― 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