-
Notifications
You must be signed in to change notification settings - Fork 0
/
PBKit.podspec
32 lines (25 loc) · 1008 Bytes
/
PBKit.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
Pod::Spec.new do |s|
s.name = 'PBKit'
s.version = '0.6.3'
s.summary = 'UIKit with Pbind.'
s.description = <<-DESC
A group of UI components that using Pbind which can simply configure layout and data source with Plist.
DESC
s.homepage = 'https://github.com/wequick/PBKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'galenlin' => '[email protected]' }
s.source = { :git => 'https://github.com/wequick/PBKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://weibo.com/galenlin'
s.ios.deployment_target = '7.0'
# s.source_files = 'PBKit/Classes/**/*'
s.subspec 'PBDropdownMenu' do |sub|
sub.source_files = 'PBKit/PBDropdownMenu/**/*'
end
s.subspec 'PBImageView' do |sub|
sub.source_files = 'PBKit/PBImageView/**/*'
end
s.subspec 'PBAnimation' do |sub|
sub.source_files = 'PBKit/PBAnimation/**/*'
end
s.dependency 'Pbind'
end