-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lower casing the name of the project to try and deconflic pods
- Loading branch information
Dylan Wreggelsworth
committed
Apr 12, 2017
1 parent
89f8b8f
commit ff5b401
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Colors" | ||
s.name = "colors" | ||
s.version = "0.9" | ||
s.summary = "A color library for Swift." | ||
s.description = <<-DESC | ||
A color library for Swift. Use it to create, manipulate, and generally have fun with colors in swift. | ||
DESC | ||
s.homepage = "https://github.com/dylan/Colors" | ||
s.homepage = "https://github.com/dylan/colors" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Dylan Wreggelsworth" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/dylanrw" | ||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.9" | ||
s.watchos.deployment_target = "2.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/dylan/Colors.git", :tag => s.version.to_s } | ||
s.source = { :git => "https://github.com/dylan/colors.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/**/*" | ||
s.frameworks = "Foundation" | ||
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Colors" | ||
name: "colors" | ||
) |