forked from Rightpoint/RZBluetooth
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Rightpoint#41: Create separate podspecs for Core, Mock, and Test
- Loading branch information
1 parent
8e2fad3
commit 84724a3
Showing
6 changed files
with
77 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
Pod::Spec.new do |s| | ||
s.name = "RZBluetoothMock" | ||
s.version = "1.2.2" | ||
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.source = { :git => "https://github.com/Raizlabs/RZBluetooth.git", :tag => s.version } | ||
s.requires_arc = true | ||
|
||
s.source_files = "RZMockBluetooth/**/*.{h,m}", "RZBluetooth/**/*.{h,m}" | ||
s.public_header_files = "RZMockBluetooth/**/*.h", "RZBluetooth/**/*.h" | ||
s.private_header_files = "RZMockBluetooth/**/*+Private.h", "RZBluetooth/**/*+Private.h", "RZBluetooth/Command/*.h", "RZBluetooth/RZBCentralManager+CommandHelper.h" | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# -*- coding: utf-8 -*- | ||
Pod::Spec.new do |s| | ||
s.name = "RZBluetoothTest" | ||
s.version = "1.2.2" | ||
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.source = { :git => "https://github.com/Raizlabs/RZBluetooth.git", :tag => s.version } | ||
s.requires_arc = true | ||
|
||
s.dependency "RZBluetooth/Mock" | ||
s.frameworks = "XCTest" | ||
s.source_files = "RZBluetoothTests/RZBTestDefines.h", | ||
"RZBluetoothTests/RZBSimulatedTestCase.{h,m}", | ||
"RZBluetoothTests/Helpers/NSRunLoop+RZBWaitFor.{h,m}" | ||
s.public_header_files = "RZBluetoothTests/RZBSimulatedTestCase.h", "RZBluetoothTests/RZBTestDefines.h" | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters