-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHMCImageCache.podspec
More file actions
26 lines (21 loc) · 1.18 KB
/
HMCImageCache.podspec
File metadata and controls
26 lines (21 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'HMCImageCache'
s.version = '0.1.7'
s.summary = 'Support caching images balancing between I/O and memory with LRU algorithm'
s.description = <<-DESC
HMCImageCache is a utility supporting caching images with balancing between I/O read write and memory usage by LRU (Least recently use) algorithm as well as calculating available memory size. It also support generating UIImage with target size.
DESC
s.homepage = 'https://github.com/hmchuong/iOS-Objectivec-HMCImageCache'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Chuong M. Huynh' => 'minhchuong.itus@gmail.com' }
s.source = { :git => 'https://github.com/hmchuong/iOS-Objectivec-HMCImageCache', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'HMCImageCache/Classes/**/*'
# s.resource_bundles = {
# 'HMCImageCache' => ['HMCImageCache/Assets/*.png']
# }
s.public_header_files = 'HMCImageCache/Classes/**/*.h'
s.frameworks = 'UIKit','ImageIO'
s.dependency 'HMCThreadSafeMutableCollection', '~> 0.1.0'
s.dependency 'HMCDownloadManager', '~> 0.1.0'
end