-
Notifications
You must be signed in to change notification settings - Fork 936
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 e4f0b81
Showing
1 changed file
with
24 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,24 @@ | ||
|
||
Pod::Spec.new do |s| | ||
|
||
s.name = "FastImageCache" | ||
s.version = "1.5.1" | ||
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 | ||
s.platform = :ios, '6.0' | ||
s.source = { :git => "https://github.com/gauravmnit07/FastImageCache.git" } | ||
|
||
s.source_files = "FastImageCache/FastImageCache/**/*.{h,m}" | ||
s.requires_arc = true | ||
|
||
end |