-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathYmsCoreBluetooth.podspec
18 lines (18 loc) · 1.12 KB
/
YmsCoreBluetooth.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "YmsCoreBluetooth"
s.version = "1.10.0"
s.description = "A block-based framework for building Bluetooth 4.0 Low Energy (aka Smart or LE) iOS and OS X applications using the CoreBluetooth API. Includes Deanna and DeannaMac, applications to communicate with a TI SensorTag for iOS and OS X respectively."
s.homepage = "https://github.com/kickingvegas/YmsCoreBluetooth"
s.summary = "A block-based framework for building Bluetooth 4.0 Low Energy (aka Smart or LE) iOS and OS X applications using the CoreBluetooth API."
s.license = 'Apache License, Version 2.0'
s.author = { "Charles Choi" => "[email protected]" }
s.platform = :ios, :osx
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/kickingvegas/YmsCoreBluetooth.git", :tag => "1.10.0" }
s.source_files = 'YmsCoreBluetooth', 'YmsCoreBluetooth/**/*.{h,m,c}'
s.public_header_files = 'YmsCoreBluetooth/**/*.h'
s.ios.framework = 'CoreBluetooth'
s.osx.frameworks = 'IOBluetooth', 'IOBluetoothUI'
s.requires_arc = true
end