forked from Rightpoint/RZBluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRZBluetooth.podspec
42 lines (35 loc) · 1.56 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
# -*- coding: utf-8 -*-
Pod::Spec.new do |s|
s.name = "RZBluetooth"
s.version = "0.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.platform = :ios, 7.0
s.source = { :git => "https://github.com/Raizlabs/RZBluetooth.git", :tag => "0.1" }
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"
end
s.subspec "Mock" do |mock|
mock.dependency "RZBluetooth/Core"
mock.source_files = "RZMockBluetooth/**/*.{h,m}"
mock.public_header_files = "RZMockBluetooth/**/*.h"
end
s.subspec "Test" do |test|
test.dependency "RZBluetooth/Mock"
test.frameworks = 'XCTest'
test.source_files = "RZBluetoothTests/RZBSimulatedTestCase.{h,m}",
"RZBluetoothTests/Helpers/NSRunLoop+RZBWaitFor.{h,m}",
test.public_header_files = "RZBluetoothTests/RZBSimulatedTestCase.h"
end
end