Skip to content

Commit 40e262b

Browse files
committed
Adding podspec file
1 parent 8d8604a commit 40e262b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

FastImageCache.podspec

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
Pod::Spec.new do |s|
3+
4+
s.name = "FastImageCache"
5+
s.version = "1.5.2"
6+
s.summary = "iOS library for quickly displaying images while scrolling"
7+
8+
s.description = <<-DESC
9+
Fast Image Cache is an efficient, persistent, and—above all—fast way to store and retrieve images in your iOS application. Part of any good iOS application's user experience is fast, smooth scrolling, and Fast Image Cache helps make this easier.
10+
A significant burden on performance for graphics-rich applications like Path is image loading. The traditional method of loading individual images from disk is just too slow, especially while scrolling. Fast Image Cache was created specifically to solve this problem.
11+
DESC
12+
13+
s.homepage = "https://github.com/gauravmnit07/FastImageCache"
14+
s.license = { :type => 'MIT', :file => 'LICENSE' }
15+
s.authors = { "Mallory Paine" => "[email protected]", "Michael Potter" => "[email protected]" }
16+
17+
s.platform = :ios, '6.0'
18+
s.source = { :git => "https://github.com/gauravmnit07/FastImageCache.git" }
19+
20+
s.source_files = 'FastImageCache'
21+
s.requires_arc = true
22+
23+
end

0 commit comments

Comments
 (0)