-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNSURL+Gravatar.podspec
More file actions
24 lines (21 loc) · 982 Bytes
/
NSURL+Gravatar.podspec
File metadata and controls
24 lines (21 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "NSURL+Gravatar"
s.version = "1.0.1"
s.summary = "NSURL+Gravatar is a NSURL category to generate Gravatar URLs."
s.description = <<-DESC
NSURL+Gravatar
===================
NSURL+Gravatar is a `NSURL` category to generate Gravatar URLs.
## Usage
* Add the files to your project manually or via
[Cocoapods](http://cocoapods.org) (`pod 'NSURL+Gravatar', '~> 1.0'`)
* Import `NSURL+Gravatar.h` into the class.
* Call the `URLWithGravatarEmail size` method on a NSURL to get the Gravatar URL: `[NSURL URLWithGravatarEmail: @"email@example.com" size:100]`.
DESC
s.homepage = "http://github.com/bartj3/nsurl-gravatar"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Bart van Zon" => "bartvanzon@gmail.com" }
s.requires_arc = true
s.source = { :git => "https://github.com/bartj3/NSURL-Gravatar.git", :tag => "1.0.1" }
s.source_files = 'NSURL+Gravatar.h', 'NSURL+Gravatar.m'
end