[Add] AlibabacloudMse20190531 6.13.0
[CocoaPods.git] / Specs / 5 / f / e / Siesta / 1.0-beta.1 / Siesta.podspec.json
blob26734318c26c50cb23bcabae1a48bc01e62e10fe
2   "name": "Siesta",
3   "version": "1.0-beta.1",
4   "summary": "iOS REST Client Framework",
5   "description": "Drastically simplifies app code by providing a client-side cache of observable models for RESTful resources.\n\nSiesta ends the stateful headache of client-side network request management by providing an observable model of a RESTful resource’s state. The model answers three basic questions:\n\n* What is the latest data for this resource, if any?\n* Did the latest request result in an error?\n* Is there a request in progress?\n\n…then provides notifications whenever the answers to these questions change.\n\nSiesta handles all the transitions and corner cases to deliver these answers wrapped up with a pretty bow on top, letting you focus on your UI.\n\n## Requirements\n\n* **OS:** iOS 8+\n* **Languages:** Written in Swift, supports Swift and Objective-C\n* **Build requirements:** Xcode 7 beta 6, Swift 2.0\n* **License:** MIT\n* **Status:** 1.0 release now in beta. Seeking feedback. Please experiment!\n\n## Features\n\n- Decouples UI component lifecycles from network request lifecycles\n- Eliminates error-prone state tracking logic\n- Eliminates redundant network requests\n- Unified reporting for all errors: encoding, network, server-side, and parsing\n- Transparent Etag / If-Modified-Since handling\n- Painless handling for JSON and plain text, plus customizable response transformation\n- Prebaked UI for loading & error handling\n- Debug-friendly, customizable logging\n- Written in Swift with a great [Swift-centric API](https://bustoutsolutions.github.io/siesta/api/), but…\n- …also works great from Objective-C thanks to a compatibility layer.\n- Lightweight. Won’t achieve sentience and attempt to destroy you.\n- [Robust regression tests](https://bustoutsolutions.github.io/siesta/specs/)\n- [Documentation](https://bustoutsolutions.github.io/siesta/guide/)",
6   "homepage": "http://bustoutsolutions.github.io/siesta/",
7   "license": "MIT",
8   "authors": {
9     "Bust Out Solutions, Inc.": "hello@bustoutsolutions.com",
10     "Paul Cantrell": "https://innig.net"
11   },
12   "social_media_url": "https://twitter.com/teambustout",
13   "documentation_url": "https://bustoutsolutions.github.io/siesta/guide/",
14   "platforms": {
15     "ios": "8.0"
16   },
17   "source": {
18     "git": "https://github.com/bustoutsolutions/siesta.git",
19     "tag": "1.0-beta.1"
20   },
21   "resources": "Source/*.xib",
22   "default_subspecs": "Core",
23   "subspecs": [
24     {
25       "name": "Core",
26       "source_files": "Source/**",
27       "exclude_files": "Source/Networking-Alamofire.swift"
28     },
29     {
30       "name": "Alamofire",
31       "source_files": "Source/Networking-Alamofire.swift",
32       "dependencies": {
33         "Siesta/Core": [
35         ],
36         "Alamofire": [
37           "2.0.0-beta.2"
38         ]
39       }
40     }
41   ]