Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
59 lines (49 loc) · 1.89 KB

File metadata and controls

59 lines (49 loc) · 1.89 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# Make sure to run `pod lib lint DoraemonKit.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DoraemonKit'
s.version = '1.1.5'
s.summary = 'iOS各式各样的工具集合'
s.description = <<-DESC
iOS各式各样的工具集合 Desc
DESC
s.homepage = 'https://github.com/didi/DoraemonKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yixiang' => 'javer_yi@163.com' }
s.source = { :git => 'https://github.com/didi/DoraemonKit', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'iOS/DoraemonKit/Src/Core/**/*{.h,.m}'
###ss.vendored_frameworks = 'DoraemonKit/Lib/CrashReporter.framework'
ss.resource_bundles = {
'DoraemonKit' => 'iOS/DoraemonKit/Resource/**/*'
}
ss.vendored_frameworks = 'iOS/DoraemonKit/Framework/*.framework'
s.prefix_header_contents =
'#import "DoraemonDefine.h"'
end
s.subspec 'WithLogger' do |ss|
ss.source_files = 'iOS/DoraemonKit/Src/Logger/**/*{.h,.m}'
ss.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) DoraemonWithLogger'
}
ss.dependency 'DoraemonKit/Core'
ss.dependency 'CocoaLumberjack'
end
s.subspec 'WithGPS' do |ss|
ss.source_files = 'iOS/DoraemonKit/Src/GPS/**/*{.h,.m}'
ss.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) DoraemonWithGPS'
}
ss.dependency 'DoraemonKit/Core'
end
s.dependency 'PNChart'
s.dependency 'BSBacktraceLogger'
s.dependency 'fishhook'
s.dependency 'UITextView+Placeholder'
end
Morty Proxy This is a proxified and sanitized view of the page, visit original site.