-
Notifications
You must be signed in to change notification settings - Fork 935
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d8604a
commit 7cf81c3
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
Pod::Spec.new do |s| | ||
|
||
s.name = "FastImageCache" | ||
s.version = "1.5.2" | ||
s.summary = "iOS library for quickly displaying images while scrolling" | ||
|
||
s.description = <<-DESC | ||
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. | ||
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. | ||
DESC | ||
|
||
s.homepage = "https://github.com/gauravmnit07/FastImageCache" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.authors = { "Mallory Paine" => "[email protected]", "Michael Potter" => "[email protected]" } | ||
|
||
s.platform = :ios, '6.0' | ||
s.source = { :git => "https://github.com/gauravmnit07/FastImageCache.git", :branch => 'master' } | ||
|
||
s.source_files = 'FastImageCache' | ||
s.requires_arc = true | ||
|
||
end |