forked from doric-pub/Doric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoricDevkit.podspec
More file actions
27 lines (20 loc) · 835 Bytes
/
DoricDevkit.podspec
File metadata and controls
27 lines (20 loc) · 835 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
25
26
27
Pod::Spec.new do |s|
s.name = 'DoricDevkit'
s.version = '0.6.13'
s.summary = 'Doric iOS Devkit'
s.description = <<-DESC
Doric iOS Devkit for debugging & hotload.
DESC
s.homepage = 'https://github.com/doric-pub/doric'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'Jingpeng Wang' => 'jingpeng.wang@outlook.com' }
s.source = { :git => 'https://github.com/doric-pub/doric.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'doric-iOS/Devkit/Classes/**/*'
s.resource_bundles = {
'DoricDevkit' => ['doric-iOS/Devkit/Assets/**/*']
}
s.public_header_files = 'doric-iOS/Devkit/Classes/**/*.h'
s.dependency 'DoricCore'
s.dependency 'SocketRocket'
end