forked from bachonk/InitialsImageView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitialsImageView.podspec
More file actions
16 lines (16 loc) · 839 Bytes
/
InitialsImageView.podspec
File metadata and controls
16 lines (16 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "InitialsImageView"
s.version = "0.4.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 = "https://i.imgur.com/KE8OfrL.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Tom Bachant" => "tom@dashride.com" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/bachonk/InitialsImageView.git",
:tag => '0.4.0' }
s.source_files = 'InitialsImageView.swift'
s.requires_arc = true
s.swift_version = '4.2'
end