-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCTBaseUIWidget.podspec
More file actions
85 lines (70 loc) · 2.86 KB
/
CTBaseUIWidget.podspec
File metadata and controls
85 lines (70 loc) · 2.86 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#
# Be sure to run `pod lib lint BaseUIWidget.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 = 'CTBaseUIWidget'
s.version = '0.5.0.5'
s.summary = 'iOS 快速开发时可用的UI组件.'
# 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 快速开发时可用的UI组件.
DESC
s.homepage = 'https://github.com/ours-curiosity/ios_base_UIWidget'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ours-curiosity' => 'ours.curiosity@gmail.com' }
s.source = { :git => 'https://github.com/ours-curiosity/ios_base_UIWidget.git', :tag => s.version.to_s }
s.social_media_url = 'https://ours-curiosity.github.io/'
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.swift_version = "5.0"
s.source_files = 'BaseUIWidget/Classes/**/*'
# WindowView
s.subspec 'WindowView' do |sp|
sp.source_files = 'BaseUIWidget/Classes/CTInputView/WindowView.swift'
end
# CTPaddingLabel
s.subspec 'CTPaddingLabel' do |sp|
sp.source_files = 'BaseUIWidget/Classes/CTPaddingLabel/*'
end
# SysJumpManager
s.subspec 'SysJumpManager' do |sp|
sp.source_files = 'BaseUIWidget/Classes/JumpManager/*'
end
# keyboard monitor
s.subspec 'KeyBoardMonitor' do |sp|
sp.source_files = 'BaseUIWidget/Classes/CTInputView/KeyboardMonitor.swift'
end
# CTToast
s.subspec 'CTToast' do |sp|
sp.source_files = 'BaseUIWidget/Classes/CTToast/*'
sp.dependency 'Toast-Swift'
end
# InviteTextFiled
s.subspec 'InviteFiled' do |sp|
sp.source_files = 'BaseUIWidget/Classes/InviteFiled/*'
end
# ActiveLabel
s.subspec 'ActiveLabel' do |sp|
sp.source_files = 'BaseUIWidget/Classes/ActiveLabel/*'
end
# InputView
s.subspec 'CTInputView' do |sp|
sp.source_files = 'BaseUIWidget/Classes/CTInputView/*'
sp.dependency 'SnapKit'
sp.dependency 'KMPlaceholderTextView'
sp.dependency 'CTBaseFoundation/Extension'
s.dependency 'CTBaseFoundation/UIKit'
end
s.dependency 'CTBaseFoundation/UIKit'
s.dependency 'MJRefresh'
s.dependency 'Kingfisher'
end