Skip to content

Instantly share code, notes, and snippets.

@zwaldowski
Created April 15, 2012 20:36
Show Gist options
  • Save zwaldowski/2394718 to your computer and use it in GitHub Desktop.
Save zwaldowski/2394718 to your computer and use it in GitHub Desktop.
SYCache CocoaPod
Pod::Spec.new do |s|
s.name = 'SYCache'
s.version = '1.0'
s.license = 'MIT'
s.summary = 'Fancy caching with on-disk persistence'
s.homepage = 'https://github.com/Synthetic/SYCache'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/Synthetic/SYCache.git', :commit => 'origin/master' }
s.source_files = 'SYCache.{h,m}'
s.description = 'Simple in memory and on disk cache. It\'s backed by an NSCache in memory, ' \
'so it automatically purges itself when memory gets low. Purged memory keys '\
'will automatically be loaded from disk the next time the are requested.'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment