forked from boai/BAKit
-
Notifications
You must be signed in to change notification settings - Fork 5
/
BAKit.podspec
69 lines (51 loc) · 1.98 KB
/
BAKit.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
#
# Be sure to run `pod lib lint BAKit.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 = 'BAKit'
s.version = '0.0.5'
s.summary = 'A short description of BAKit.'
s.description = <<-DESC
this is BAKit
DESC
s.homepage = 'https://github.com/BAHome/BAKit'
# https://gitee.com/dsteam/BAKit.git
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'boai' => '[email protected]' }
# s.source = { :git => 'https://github.com/BAHome/BAKit.git', :tag => s.version.to_s }
s.source = { :git => 'https://gitee.com/dsteam/BAKit.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '9.0'
s.requires_arc = true
# s.resource_bundles = {
# 'BAKit' => ['BAKit/Assets/*.png']
# }
s.dependency 'BAButton'
s.dependency 'BAAlert'
s.dependency 'BAGridView'
s.dependency 'BAAlertController'
s.dependency 'BATextField'
s.dependency 'BATextView'
s.dependency 'ReactiveObjC'
s.dependency 'OOMDetector'
s.dependency 'MGJRouter'
s.dependency 'MJExtension'
s.dependency 'SVProgressHUD'
s.frameworks = 'UIKit', 'Foundation'
s.prefix_header_contents =
'#import <UIKit/UIKit.h>',
'#import <Foundation/Foundation.h>',
'#import <BAButton/BAButton.h>',
'#import <BAAlert/BAAlert_OC.h>',
'#import <BATextView/BATextView.h>',
'#import "BATextField.h"',
'#import "BAKit_BAGridView.h"',
'#import "BAKit.h"'
s.source_files = 'BAKit/Classes/**/*.{h,m}'
s.public_header_files = 'Pod/Classes/**/*.h'
end