forked from tatey/LIFXHTTPKit
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
30 additions
and
1 deletion.
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,29 @@ | ||
# | ||
# Be sure to run `pod spec lint LIFXHTTPKit.podspec' to ensure this is a | ||
# valid spec and to remove all comments including this before submitting the spec. | ||
# | ||
# To learn more about Podspec attributes see https://docs.cocoapods.org/specification.html | ||
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
|
||
s.name = "LIFXHTTPKit" | ||
s.version = "3.0.1" | ||
s.summary = "A framework for interacting with the LIFX HTTP API that has no external dependencies. Suitable for use inside extensions." | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE.txt' } | ||
s.homepage = "https://github.com/tatey/LIFXHTTPKit" | ||
s.author = { "Alex Stonehouse" => "[email protected]" } | ||
s.source = { :git => "https://github.com/LIFX/LIFXHTTPKit.git", :tag => "#{s.version}" } | ||
|
||
# Version | ||
s.platform = :ios | ||
s.swift_version = "4.0" | ||
s.ios.deployment_target = "8.2" | ||
s.osx.deployment_target = "10.10" | ||
s.watchos.deployment_target = "2.0" | ||
|
||
s.source_files = "Source/**/*" | ||
|
||
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