Skip to content

Commit e4f0b81

Browse files
committed
Adding podspec file
1 parent 8d8604a commit e4f0b81

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

FastImageCache.podspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
Pod::Spec.new do |s|
3+
4+
s.name = "FastImageCache"
5+
s.version = "1.5.1"
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
18+
s.platform = :ios, '6.0'
19+
s.source = { :git => "https://github.com/gauravmnit07/FastImageCache.git" }
20+
21+
s.source_files = "FastImageCache/FastImageCache/**/*.{h,m}"
22+
s.requires_arc = true
23+
24+
end

0 commit comments

Comments
 (0)