Skip to content

Commit

Permalink
Adding podspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
gbansal-spr committed Jan 30, 2017
1 parent 8d8604a commit e4f0b81
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions FastImageCache.podspec
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" => "mallory@path.com", "Michael Potter" => "michael@path.com" }

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

0 comments on commit e4f0b81

Please sign in to comment.