-
Notifications
You must be signed in to change notification settings - Fork 8
/
ROSiOS.podspec
28 lines (24 loc) · 1.04 KB
/
ROSiOS.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
Pod::Spec.new do |s|
s.name = "ROSiOS"
s.version = "0.0.4"
s.summary = "template package of ROSiOS."
s.description = <<-DESC
This is a bootstrap package for creating iOS App using ROS(Robot Operating System).
This includes some examples (Topic Viewer, Talker and Listener) on Example directory.
DESC
s.homepage = "https://github.com/furushchev/ROSiOS"
s.license = {:type => 'MIT'}
s.author = { "Yuki Furuta" => "[email protected]" }
s.source = { :git => "https://github.com/furushchev/ROSiOS.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/furushchev'
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/*.{h,m,mm}'
s.resource_bundles = {
'ROSiOS' => ['Pod/Assets/Configuration.storyboard']
}
s.public_header_files = 'Pod/Classes/*.h'
s.frameworks = 'UIKit'
s.dependency "ROSiOS-core"
s.ios.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '${PODS_ROOT}/**'}
end