blob: 37d8651a270a4fd6f6c8180c2449c3373bf68cc0 [file] [log] [blame]
{
"name": "Teller",
"version": "0.2.1-alpha",
"summary": "iOS library that manages your app's cached data with ease.",
"description": "The data used in your mobile app: user profiles, a collection of photos, list of friends, etc. all have state. Your data is in 1 of many different states:\n\n* Being fetched for the first time (if it comes from an async network call)\n* The data is empty\n* Data exists in the device's storage (cached).\n* During the empty and data states, your app could also be fetching fresh data to replace the cached data on the device that is out of date.\n\nDetermining what state your data is in and managing it can be a big pain. That is where Teller comes in. All you need to do is tell Teller how to save your data, query your data, and how to fetch fresh data (probably with a network API call) and Teller facilities everything else for you. Teller will query your cached data, parse it to determine the state of it, fetch fresh data if the cached data is too old, and deliver the state of the data to listeners so you can update the UI to your users.",
"homepage": "https://github.com/levibostian/Teller-iOS",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Levi Bostian": "levi.bostian@gmail.com"
},
"source": {
"git": "https://github.com/levibostian/Teller-iOS.git",
"tag": "0.2.1-alpha"
},
"social_media_url": "https://twitter.com/levibostian",
"platforms": {
"ios": "8.0"
},
"swift_version": "4.2",
"source_files": "Teller/Classes/**/*",
"dependencies": {
"RxSwift": [
"~> 4.4.0"
]
}
}