-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathFastboard.podspec
32 lines (26 loc) · 1.08 KB
/
Fastboard.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
Pod::Spec.new do |s|
s.name = 'Fastboard'
s.version = '1.4.2'
s.summary = 'Quickly create a whiteboard interface for iOS'
s.description = <<-DESC
High-level SDK for Whiteboard-iOS with UI.
We recommend using Whiteboard-iOS directly if you need more customization,
DESC
s.homepage = 'https://github.com/netless-io/fastboard-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yunshi' => 'xuyunshi@agora.io' }
s.source = { :git => 'https://github.com/netless-io/fastboard-iOS.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.subspec 'core' do |core|
core.source_files = 'Fastboard/Classes/**/*'
core.exclude_files = 'Fastboard/Classes/include'
core.dependency 'Whiteboard', '~> 2.16.81'
core.resource_bundles = {
'Icons' => ['Fastboard/Assets/*.xcassets'],
'LocalizedStrings' => ['Fastboard/Assets/*.lproj/*.strings']
}
core.frameworks = 'UIKit'
end
s.default_subspec = 'core'
end