-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove argument name for string input
- Loading branch information
Tom Bachant
committed
Sep 11, 2018
1 parent
71b3744
commit 84dc279
Showing
5 changed files
with
19 additions
and
10 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 |
---|---|---|
|
@@ -63,3 +63,4 @@ fastlane/report.xml | |
fastlane/Preview.html | ||
fastlane/screenshots | ||
fastlane/test_output | ||
.DS_Store |
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,15 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "InitialsImageView" | ||
s.version = "0.2.0" | ||
s.version = "0.3.0" | ||
s.summary = "A simple UIImageView extension for using initials as a profile image, written in swift" | ||
s.description = "An easy, helpful UIImageView extension that generates letter initials as a placeholder for user profile images, with a randomized background color." | ||
s.homepage = "https://github.com/bachonk/InitialsImageView" | ||
s.screenshots = "http://i.imgur.com/xSBjVQ7.png" | ||
s.screenshots = "https://i.imgur.com/KE8OfrL.png" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Tom Bachant" => "[email protected]" } | ||
s.platform = :ios, '8.0' | ||
s.source = { :git => "https://github.com/bachonk/InitialsImageView.git", | ||
:tag => '0.2.0' } | ||
:tag => '0.3.0' } | ||
s.source_files = 'InitialsImageView.swift' | ||
s.requires_arc = true | ||
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
8 changes: 8 additions & 0 deletions
8
...sImageViewSampleSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
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