-
Notifications
You must be signed in to change notification settings - Fork 50
/
NetworkCachePlugin.podspec
43 lines (36 loc) · 1.61 KB
/
NetworkCachePlugin.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
#
# Be sure to run 'pod lib lint NetworkCachePlugin.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'NetworkCachePlugin'
s.version = '1.0.8'
s.summary = 'Network Cache Plugin Library.'
# 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.homepage = 'https://github.com/yangKJ/RxNetworks'
s.description = 'https://github.com/yangKJ/RxNetworks/blob/master/README.md'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yangkejun' => 'yangkj310@gmail.com' }
s.source = { :git => 'https://github.com/yangKJ/RxNetworks.git', :tag => "#{s.version}" }
s.social_media_url = 'https://juejin.cn/user/1987535102554472/posts'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.15'
s.swift_version = '5.0'
s.requires_arc = true
s.static_framework = true
s.cocoapods_version = '>= 1.4.0'
s.pod_target_xcconfig = {
'SWIFT_WHOLE_MODULE_OPTIMIZATION' => 'YES',
"OTHER_SWIFT_FLAGS[config=Debug]" => "-D DEBUG",
}
s.source_files = 'Plugins/Cache/*.swift'
s.dependency 'Booming/Core'
s.dependency 'CacheX'
end