-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the logic to use the first letter of the first and last word #3
- Loading branch information
1 parent
bdce0e1
commit cbb80a8
Showing
32 changed files
with
752 additions
and
543 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,13 +1,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'LetterAvatarKit' | ||
s.platform = :ios, '8.0' | ||
s.version = '1.0.1' | ||
s.license = { :type => 'MIT' } | ||
s.homepage = 'https://github.com/vpeschenkov/LetterAvatarKit' | ||
s.authors = { 'Victor Peschenkov' => 'nerevarxx@gmail.com' } | ||
s.summary = 'UIImage extension that generates letter-based avatars written in Swift.' | ||
s.source = { :git => 'https://github.com/vpeschenkov/LetterAvatarKit.git', :tag => s.version.to_s } | ||
s.source_files = 'LetterAvatarKit/*.{h,swift}', 'LetterAvatarKit/Extensions/*.{swift}' | ||
s.requires_arc = true | ||
s.framework = 'Foundation', 'UIKit' | ||
Pod::Spec.new do |spec| | ||
spec.name = 'LetterAvatarKit' | ||
spec.platform = :ios, '8.0' | ||
spec.version = '1.1.0' | ||
spec.license = { :type => 'MIT' } | ||
spec.homepage = 'https://github.com/vpeschenkov/LetterAvatarKit' | ||
spec.authors = { 'Victor Peschenkov' => 'nerevarxx@gmail.com' } | ||
spec.summary = 'UIImage extension that generates letter-based avatars written in Swift.' | ||
spec.source = { :git => 'https://github.com/vpeschenkov/LetterAvatarKit.git', :tag => spec.version.to_s } | ||
spec.source_files = 'LetterAvatarKit/*.{h,swift}', 'LetterAvatarKit/Extensions/*.{swift}' | ||
spec.requires_arc = true | ||
spec.framework = 'Foundation', 'UIKit' | ||
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
2 changes: 1 addition & 1 deletion
2
...arKit/Extensions/CharacterExtension.swift → ...xtensions/Character+LetterAvatarKit.swift
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
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
Oops, something went wrong.