-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from hyperoslo/feature/file-cache
File cache feature
- Loading branch information
Showing
20 changed files
with
647 additions
and
69 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
...ject.xcworkspace/contents.xcworkspacedata → ...ject.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
platform :ios, '8.0' | ||
use_frameworks! | ||
inhibit_all_warnings! | ||
|
||
# When using more than one target in your project | ||
# link_with 'Demo', 'Tests' | ||
|
||
# pod 'Sample' | ||
pod 'Nimble', '>= 2.0.0-rc.3' | ||
pod 'Quick' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PODS: | ||
- Nimble (2.0.0) | ||
- Quick (0.6.0) | ||
|
||
DEPENDENCIES: | ||
- Nimble (>= 2.0.0-rc.3) | ||
- Quick | ||
|
||
SPEC CHECKSUMS: | ||
Nimble: 472e75466819eb8c06299233e87c694a9b51328a | ||
Quick: 563686dbcf0ae0f9f7401ac9cd2d786ee1b7f3d7 | ||
|
||
COCOAPODS: 0.39.0.beta.5 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Foundation | ||
|
||
class User: Cachable { | ||
var firstName: String | ||
var lastName: String | ||
|
||
init(firstName: String, lastName: String) { | ||
self.firstName = firstName | ||
self.lastName = lastName | ||
} | ||
} |
Oops, something went wrong.