-
Notifications
You must be signed in to change notification settings - Fork 2
/
RxHeartRateMonitors.podspec
37 lines (31 loc) · 1.58 KB
/
RxHeartRateMonitors.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
33
34
35
36
37
#
# Be sure to run `pod lib lint RxHeartRateMonitors.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'RxHeartRateMonitors'
s.version = '0.0.3'
s.summary = 'RxHeartRateMonitors is a lightweight layer on top of RxBluetoothKit and Core Bluetooth to interact with BTLE Heart Rate Monitors.'
s.description = <<-DESC
It leverages the power of RxBluetoothKit and Corebluetooth to allow you to communicate with monitors in a seamless way.
* Connect to BTLE heart rate monitors avoiding the complexities of CoreBluetooth.
* No need to parse raw data.
* No need to care about services and characteristics.
* Extensible. If you want to connect to other types of devices, like speedometers, you can create your own central.
DESC
s.homepage = 'https://github.com/leandromperez/RxHeartRateMonitors'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Leandro Perez' => '[email protected]' }
s.source = { :git => 'https://github.com/leandromperez/RxHeartRateMonitors.git', :tag => s.version.to_s }
s.social_media_url = 'https://medium.com/@leandromperez'
s.swift_version = '4.2'
s.ios.deployment_target = '11.0'
s.source_files = 'RxHeartRateMonitors/Classes/**/*'
s.dependency 'RxSwift'
s.dependency 'RxBluetoothKit'
s.dependency 'RxSwiftExt'
s.dependency 'RxCocoa'
end