-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changed podspec file to use the new version
- Loading branch information
Showing
3 changed files
with
21 additions
and
12 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
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,17 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'HexColors' | ||
s.version = '4.0.0' | ||
s.license = 'MIT' | ||
s.summary = 'Easy HEX- and RGB-Color Handling for UIColor and NSColor as a drop in category. Former MLUIColorAdditions.' | ||
s.name = 'HexColors' | ||
s.version = '5.0.0' | ||
s.license = 'MIT' | ||
s.summary = 'HexColors is an extension for UIColor and NSColor to support for creating colors from a hex strings.' | ||
s.homepage = 'https://github.com/mRs-/HexColors' | ||
s.description = %{ | ||
HexColors is easy drop in category for HexColor integration in iOS and Mac OS X. Its build as a category for easy to use and can be used for UIColor and NSColor class. | ||
HexColors is an extension for UIColor and NSColor to support for creating colors from a hex string like #FF0088 or 8844FF and back to a String. Completely rewritten in Swift 3! | ||
If you want to use this in Objective-C jump to the 4.X version Tag. | ||
} | ||
s.author = { "Marius Landwehr" => "marius.landwehr@gmail.com", "holgersindbaek" => "holgersindbaek@gmail.com" } | ||
s.source = { :git => 'https://github.com/mRs-/HexColors.git', :tag => s.version.to_s} | ||
s.ios.deployment_target = '5.0' | ||
s.osx.deployment_target = '10.6' | ||
s.author = { "Marius Landwehr" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/mRs-/HexColors.git', :tag => s.version.to_s} | ||
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_files = 'Classes/HexColors.{h,m}' | ||
s.source_files = 'Sources/*.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