forked from Rightpoint/RZBluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RZBluetooth.podspec
47 lines (40 loc) · 1.93 KB
/
RZBluetooth.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
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
Pod::Spec.new do |s|
s.name = "RZBluetooth"
s.version = "1.2.1"
s.summary = "A Core Bluetooth helper library to simplify the development and testing of Core Bluetooth applications."
s.description = <<-DESC
RZBluetooth is a Core Bluetooth helper with 3 primary goals:
- Simplify the delegate callbacks and encourage best practices
- Provide a pattern for Profile level APIs, with support for public profiles
- Simplify and encourage testing - including unit tests, automated integration tests, and manual tests.
DESC
s.homepage = "http://github.com/Raizlabs/RZBluetooth"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Brian King" => "[email protected]" }
s.osx.deployment_target = "10.10"
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "4.0"
s.source = { :git => "https://github.com/Raizlabs/RZBluetooth.git", :tag => s.version }
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |core|
core.source_files = "RZBluetooth/**/*.{h,m}"
core.public_header_files = "RZBluetooth/**/*.h"
core.private_header_files = "RZBluetooth/**/*+Private.h", "RZBluetooth/Command/*.h", "RZBluetooth/RZBCentralManager+CommandHelper.h"
end
s.subspec "Mock" do |mock|
mock.dependency "RZBluetooth/Core"
mock.source_files = "RZMockBluetooth/**/*.{h,m}"
mock.public_header_files = "RZMockBluetooth/**/*.h"
mock.private_header_files = "RZMockBluetooth/**/*+Private.h"
end
s.subspec "Test" do |test|
test.dependency "RZBluetooth/Mock"
test.frameworks = "XCTest"
test.source_files = "RZBluetoothTests/RZBTestDefines.h",
"RZBluetoothTests/RZBSimulatedTestCase.{h,m}",
"RZBluetoothTests/Helpers/NSRunLoop+RZBWaitFor.{h,m}"
test.public_header_files = "RZBluetoothTests/RZBSimulatedTestCase.h", "RZBluetoothTests/RZBTestDefines.h"
end
end