Skip to content

Commit

Permalink
Switching from Carthage back to CocoaPods for managing RxLifx-Swift. …
Browse files Browse the repository at this point in the history
…Makes sense to have everything under one dependency system.
  • Loading branch information
lightbow authored and flowsprenger committed Mar 12, 2018
1 parent c13db82 commit 60006af
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LifxDomain.podspec
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
23 changes: 23 additions & 0 deletions RxLifx.podspec
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
25 changes: 25 additions & 0 deletions RxLifxApi.podspec
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

0 comments on commit 60006af

Please sign in to comment.