-
Notifications
You must be signed in to change notification settings - Fork 0
/
Easy.podspec
71 lines (59 loc) · 2.67 KB
/
Easy.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
#
# Be sure to run `pod lib lint Easy.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 = 'Easy'
s.version = '2.9.1'
s.summary = 'develop Swift with Easy'
s.description = <<-DESC
Reduce development time and increase development efficiency
DESC
s.homepage = 'https://github.com/OctMon/Easy'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'OctMon' => '[email protected]' }
s.source = { :git => 'https://github.com/OctMon/Easy.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.default_subspec = ['Core', 'Session']
s.subspec 'Core' do |ss|
ss.source_files = 'Easy/Classes/Core/*'
ss.resources = ['Easy/Resources/EasyCore.bundle']
ss.dependency 'SnapKit', '~> 5.0.1' # https://github.com/SnapKit/SnapKit
end
s.subspec 'Common' do |ss|
ss.dependency 'MBProgressHUD', '~> 1.2.0' # https://github.com/jdg/MBProgressHUD
ss.dependency 'MJRefresh', '~> 3.5.0' # https://github.com/CoderMJLee/MJRefresh
ss.dependency 'RTRootNavigationController', '~> 0.7.2' # https://github.com/rickytan/RTRootNavigationController
ss.dependency 'SDWebImage', '~> 5.11.1' # https://github.com/rs/SDWebImage
#ss.dependency 'SwiftyAttributes'#, '~> 5.1.1' # https://github.com/eddiekaiger/SwiftyAttributes
end
s.subspec 'RSA' do |ss|
ss.source_files = 'Easy/Classes/RSA/*'
ss.dependency 'Easy/Core'
ss.dependency 'SwiftyRSA', '~> 1.5.0' # https://github.com/TakeScoop/SwiftyRSA
end
s.subspec 'Session' do |ss|
ss.source_files = 'Easy/Classes/Session/*'
ss.dependency 'Easy/Core'
ss.dependency 'Alamofire', '~> 5.5.0' # https://github.com/Alamofire/Alamofire
end
s.subspec 'Social' do |ss|
ss.source_files = 'Easy/Classes/Social/*'
ss.resources = ['Easy/Resources/EasySocial.bundle']
ss.dependency 'Easy/Core'
ss.dependency 'MonkeyKing', '~> 2.1.0' # https://github.com/nixzhu/MonkeyKing
end
s.subspec 'Scan' do |ss|
ss.source_files = 'Easy/Classes/Scan/*'
ss.dependency 'Easy/Core'
end
s.subspec 'PageController' do |ss|
ss.source_files = 'Easy/Classes/PageController/*'
ss.dependency 'Easy/Core'
ss.dependency 'WMPageController', '~> 2.5.2' # https://github.com/wangmchn/WMPageController
end
end