-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWCoreKit.podspec
102 lines (77 loc) · 3.42 KB
/
WCoreKit.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#
# Be sure to run `pod lib lint WCoreKit.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "WCoreKit"
s.version = "0.3.2"
s.summary = "一些方便开发的IOS工具类"
# 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.description = <<-DESC
本人自己用的一些关于IOS开发的工具
DESC
s.homepage = "https://github.com/jw10126121/WCoreKit"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "linjw" => "[email protected]" }
s.source = { :git => "https://github.com/jw10126121/WCoreKit.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
# s.frameworks = 'UIKit'
# s.libraries = 'icucore'
# s.source_files = 'Pod/Classes/**/*'
# s.resource_bundles = {
# 'WCoreKit' => ['Pod/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 3.0'
s.subspec 'WToolsKit' do |wToolsKit|
wToolsKit.source_files = 'Pod/Classes/WToolsKit/**/*'
wToolsKit.public_header_files = 'Pod/Classes/WToolsKit/**/*.h'
end
s.subspec 'WRuntimeKit' do |wRuntimeKit|
wRuntimeKit.source_files = 'Pod/Classes/WRuntimeKit/**/*'
wRuntimeKit.public_header_files = 'Pod/Classes/WRuntimeKit/**/*.h'
end
s.subspec 'WOrmManager' do |wOrmManager|
wOrmManager.source_files = 'Pod/Classes/WOrmManager/**/*'
wOrmManager.public_header_files = 'Pod/Classes/WOrmManager/**/*.h'
wOrmManager.dependency 'WCoreKit/WRuntimeKit'
end
s.subspec 'WNavigationBarTool' do |sp|
sp.source_files = 'Pod/Classes/WNavigationBarTool/**/*'
sp.public_header_files = 'Pod/Classes/WNavigationBarTool/**/*.h'
end
s.subspec 'WImageBannerView' do |sp|
sp.source_files = 'Pod/Classes/WImageBannerView/**/*'
sp.public_header_files = 'Pod/Classes/WImageBannerView/**/*.h'
sp.dependency 'SDWebImage'
sp.dependency 'WCoreKit/WToolsKit'
end
s.subspec 'WServiceForDatabase' do |sp|
sp.source_files = 'Pod/Classes/WServiceForDatabase/**/*'
sp.public_header_files = 'Pod/Classes/WServiceForDatabase/**/*.h'
sp.dependency 'WCoreKit/WOrmManager'
sp.dependency 'FMDB'
end
s.subspec 'WServiceNetAFN' do |wServiceNetAFN|
wServiceNetAFN.source_files = 'Pod/Classes/WServiceNetAFN/**/*'
wServiceNetAFN.public_header_files = 'Pod/Classes/WServiceNetAFN/**/*.h'
wServiceNetAFN.dependency 'AFNetworking'
wServiceNetAFN.dependency 'WCoreKit/WToolsKit'
end
# s.subspec 'WAuthorizationManager' do |sp|
# sp.source_files = 'Pod/Classes/WAuthorizationManager/**/*'
# sp.public_header_files = 'Pod/Classes/WAuthorizationManager/**/*.h'
# end
#
end