- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevKit.podspec
More file actions
Latest commit
24 lines (18 loc) · 852 Bytes
/
Copy pathDevKit.podspec
File metadata and controls
24 lines (18 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.newdo |s|
s.name='DevKit'
s.version='0.1.0'
s.summary='iOS 开发常用工具类'
s.platform=:ios
s.description=<<-DESC
iOS 开发常用工具类.包含:UIButton工厂类,调整Button图文布局,便捷设置UITableView占位图,GCD定时器,高精度计算等功能
DESC
s.homepage='https://github.com/Yuan91/DevKit'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Yuan91'=>'smartdy@yeah.net'}
s.source={:git=>'https://github.com/Yuan91/DevKit.git',:tag=>s.version.to_s}
s.ios.deployment_target='8.0'
s.source_files='DevKit/Classes/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end