forked from Polidea/RxBluetoothKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxBluetoothKit.podspec
More file actions
24 lines (19 loc) · 879 Bytes
/
RxBluetoothKit.podspec
File metadata and controls
24 lines (19 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "RxBluetoothKit"
s.version = "3.0.5"
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 = 'MIT'
s.author = { "Przemysław Lenart" => "przemek.lenart@polidea.com", "Kacper Harasim" => "kacper.harasim@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 = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.source_files = 'Source/*.swift'
s.frameworks = 'CoreBluetooth'
s.dependency 'RxSwift', '~> 3.0'
end