Skip to content

Commit

Permalink
lower casing the name of the project to try and deconflic pods
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Wreggelsworth committed Apr 12, 2017
1 parent 89f8b8f commit ff5b401
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Colors.podspec
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
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PackageDescription

let package = Package(
name: "Colors"
name: "colors"
)

0 comments on commit ff5b401

Please sign in to comment.