-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWDAsyncImageThumbnail.podspec
More file actions
24 lines (19 loc) · 938 Bytes
/
WDAsyncImageThumbnail.podspec
File metadata and controls
24 lines (19 loc) · 938 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 = "WDAsyncImageThumbnail"
s.version = "0.1.4"
s.summary = "Load an image or video thumbnail in background on OSX."
s.description = <<-DESC
This small library loads a thumbnail of a file (photo or video) in a
background thread and calls u back on the main thread. Features caching usning NSCache
class what is nice when loading thumbnails from remote filesystems.
DESC
s.homepage = "https://github.com/fredmajor/WDAsyncImageThumbnail"
s.license = 'MIT'
s.author = { "Fred" => "major.freddy@yahoo.com" }
s.source = { :git => "https://github.com/fredmajor/WDAsyncImageThumbnail.git", :tag => s.version.to_s }
# s.platform = :osx, '10.10'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.osx.source_files = 'Pod/Classes/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
end