[Add] EasyListKit (0.1.0)
Showing
1 changed file
with
35 additions
and
0 deletions
EasyListKit/0.1.0/EasyListKit.podspec
0 → 100644
1 | +# | ||
2 | +# Be sure to run `pod lib lint EasyListKit.podspec' to ensure this is a | ||
3 | +# valid spec before submitting. | ||
4 | +# | ||
5 | +# Any lines starting with a # are optional, but their use is encouraged | ||
6 | +# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html | ||
7 | +# | ||
8 | + | ||
9 | +Pod::Spec.new do |s| | ||
10 | + s.name = 'EasyListKit' | ||
11 | + s.version = '0.1.0' | ||
12 | + s.summary = '基于list section的业务模块抽象组件' | ||
13 | + | ||
14 | + s.description = <<-DESC | ||
15 | + 基于列表的业务组件,以单section的形式进行业务模块独立 | ||
16 | + DESC | ||
17 | + | ||
18 | + s.homepage = 'http://git.yoho.cn/ios/YH_EasyListKit.git' | ||
19 | + s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
20 | + s.author = { 'willice9527' => 'jinlin.liu@yoho.cn' } | ||
21 | + s.source = { :git => 'http://git.yoho.cn/ios/YH_EasyListKit.git', :tag => s.version.to_s } | ||
22 | + | ||
23 | + s.ios.deployment_target = '8.0' | ||
24 | + | ||
25 | + s.source_files = 'EasyListKit/Classes/**/*' | ||
26 | + | ||
27 | + # s.resource_bundles = { | ||
28 | + # 'EasyListKit' => ['EasyListKit/Assets/*.png'] | ||
29 | + # } | ||
30 | + | ||
31 | + # s.public_header_files = 'Pod/Classes/**/*.h' | ||
32 | + s.frameworks = 'UIKit', 'Foundation' | ||
33 | + s.dependency 'YH_FoundationKit', '~> 0.1.7' | ||
34 | + s.dependency 'YH_UIKit', '~> 0.1.8' | ||
35 | +end |
-
Please register or login to post a comment