-
-
Save jk/8436529 to your computer and use it in GitHub Desktop.
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
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' => '[email protected]' } | |
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