forked from jakemarsh/JMImageCache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJMImageCache.podspec
More file actions
21 lines (16 loc) · 795 Bytes
/
JMImageCache.podspec
File metadata and controls
21 lines (16 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "JMImageCache"
s.version = "0.4.0"
s.summary = "NSCache based remote-image caching and downloading mechanism for iOS."
s.description = 'NSCache based remote-image caching and downloading mechanism for iOS. Is block based and uses a simple UIImageView category to handle loading images with placeholders. With fix to the placeholder behaviour'
s.homepage = "https://github.com/jakemarsh/JMImageCache"
s.license = {
:type => 'MIT',
:file => 'MIT-LICENSE'
}
s.authors = { "Jake Marsh" => "jake@deallocatedobjects.com" }
s.source = { :git => "https://github.com/jakemarsh/JMImageCache.git", :tag => "0.4.0" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = ['*.h', '*.m']
end