Skip to content

Instantly share code, notes, and snippets.

@jk
Forked from zwaldowski/SYCache.podspec
Created January 15, 2014 13:47
Show Gist options
  • Save jk/8436529 to your computer and use it in GitHub Desktop.
Save jk/8436529 to your computer and use it in GitHub Desktop.
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