-
Notifications
You must be signed in to change notification settings - Fork 51
/
Bean-iOS-OSX-SDK.podspec
30 lines (20 loc) · 1.22 KB
/
Bean-iOS-OSX-SDK.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
Pod::Spec.new do |s|
s.name = "Bean-iOS-OSX-SDK"
s.version = "3.0.6"
s.summary = "Punch Through Design's SDK for speeding up development with the LightBlue Bean development platform"
s.homepage = "https://github.com/PunchThrough/Bean-iOS-OSX-SDK"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Punch Through Design" => "[email protected]" }
s.documentation_url = 'http://punchthrough.com/files/bean/sdk-docs/index.html'
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/PunchThrough/Bean-iOS-OSX-SDK.git", :tag => s.version.to_s, :submodules => true }
s.source_files = "source/**/*.{h,m}", "App Message Definitions/*.{h,m}","Bean OSX Static Library/**/*.{h,m}","source"
s.exclude_files = "Bean OSX Static Library/Bean OSX LibraryTests/**/*.{h,m}", "Bean OSX Static Library/Frameworks/**/OCMock.framework/**/*.{h,m}"
s.resource = "firmware/*"
s.ios.frameworks = "CoreBluetooth"
s.osx.frameworks = "IOBluetooth"
s.requires_arc = true
s.prefix_header_contents = '#import "BEAN_Globals.h"'
s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SRCROOT)/../bean-apple-sdk/source/Public" }
end