AwesomeCache
AwesomeCache copied to clipboard
Delightful on-disk cache (written in Swift)
Just spent time pulling this project just to realise it doesn't even compile. Please put up a disclaimer if you don't want to maintain it any more and don't waste...
``` *** Building scheme "AwesomeCache-iOS" in Example.xcodeproj Build Failed Task failed with exit code 65: /usr/bin/xcrun xcodebuild -project project/Carthage/Checkouts/AwesomeCache/Example.xcodeproj -scheme AwesomeCache-iOS -configuration Release -derivedDataPath /Users/user/Library/Caches/org.carthage.CarthageKit/DerivedData/11.3.1_11C504/AwesomeCache/5.0 -sdk iphoneos ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY=...
- I updated pod from unSupported version "swift 3" to support the latest swift version "swift 5" - solve issue #112
please update your Pod swift version to latest swift version "swift 5".
This PR adds support for Swift 5.0. Besides, I updated the project to the settings recommended by Xcode.
* Errors and warnings fixed * Recommended Xcode settings applied
Currently, if the in-memory cache is purged and on-disk cached items remain, when an item is requested from the cache, it is loaded from disk each time it's requested. This...
I added OS X target and wrote some #if code for iOS and OS X. By this PR, cathage can also use AwesomeCache on OS X. Would you please check...