forked from Polidea/RxBluetoothKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxBluetoothKit.podspec
28 lines (23 loc) · 1.28 KB
/
RxBluetoothKit.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 = "RxBluetoothKit"
s.version = "7.0.0"
s.summary = "Bluetooth library for RxSwift"
s.description = <<-DESC
RxBluetoothKit is lightweight and easy to use Rx support for CoreBluetooth.
DESC
s.homepage = "https://github.com/polidea/RxBluetoothKit"
s.license = 'Apache License, Version 2.0.'
s.author = { "Przemysław Lenart" => "przemek.lenart@polidea.com", "Kacper Harasim" => "kacper.harasim@polidea.com", "Michał Laskowski" => "michal.laskowski@polidea.com", "Paweł Janeczek" => "pawel.janeczek@polidea.com", "Bartosz Stelmaszuk" => "bartosz.stelmaszuk@polidea.com" }
s.source = { :git => "https://github.com/polidea/RxBluetoothKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/polidea'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
s.osx.exclude_files = 'Source/RestoredState.swift', 'Source/CentralManager+RestoredState.swift', 'Source/CentralManagerRestoredState.swift'
s.frameworks = 'CoreBluetooth'
s.dependency 'RxSwift', '~> 6.0'
end