-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switching from Carthage back to CocoaPods for managing RxLifx-Swift. …
…Makes sense to have everything under one dependency system.
- Loading branch information
1 parent
c13db82
commit 60006af
Showing
3 changed files
with
69 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "LifxDomain" | ||
s.version = "0.0.1" | ||
|
||
s.summary = "LIFX Message definition and (de)serialization code for integration with your own code. Has no external dependencies." | ||
s.description = <<-DESC | ||
Part of the RxLifx-Swift set of frameworks | ||
DESC | ||
|
||
s.homepage = "https://github.com/flowsprenger/RxLifx-Swift" | ||
s.license = 'MIT' | ||
s.author = 'Florian Sprenger' | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '3.2' | ||
|
||
s.source = { :git => "https://github.com/lightbow/RxLifx-Swift.git" } | ||
|
||
s.source_files = 'LifxDomain/LifxDomain/*.{h,swift}' | ||
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,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "RxLifx" | ||
s.version = "0.0.1" | ||
|
||
s.summary = "Networking code to communicate with LIFX lights on the local LAN using UDP packets." | ||
s.description = <<-DESC | ||
Part of the RxLifx-Swift set of frameworks | ||
DESC | ||
|
||
s.homepage = "https://github.com/flowsprenger/RxLifx-Swift" | ||
s.license = 'MIT' | ||
s.author = 'Florian Sprenger' | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '3.2' | ||
|
||
s.source = { :git => "https://github.com/lightbow/RxLifx-Swift.git" } | ||
|
||
s.dependency 'RxSwift', '4.1.0' | ||
|
||
s.source_files = 'RxLifx/RxLifx/*.{h,swift}' | ||
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,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "RxLifxApi" | ||
s.version = "0.0.1" | ||
|
||
s.summary = "Simple Api demonstrating usage RxLifx and LifxDomain" | ||
s.description = <<-DESC | ||
Part of the RxLifx-Swift set of frameworks | ||
DESC | ||
|
||
s.homepage = "https://github.com/flowsprenger/RxLifx-Swift" | ||
s.license = 'MIT' | ||
s.author = 'Florian Sprenger' | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '3.2' | ||
|
||
s.source = { :git => "https://github.com/lightbow/RxLifx-Swift.git" } | ||
|
||
s.dependency 'RxSwift', '4.1.0' | ||
s.dependency 'RxLifx' | ||
s.dependency 'LifxDomain' | ||
|
||
s.source_files = 'RxLifxApi/RxLifxApi/*.{h,swift}', 'RxLifxApi/RxLifxApi/Command/*.swift' | ||
end |