summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md')
-rw-r--r--StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md b/StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md
new file mode 100644
index 00000000..478efde9
--- /dev/null
+++ b/StoneIsland/platforms/ios/Pods/GTMSessionFetcher/README.md
@@ -0,0 +1,23 @@
+# Google Toolbox for Mac - Session Fetcher #
+
+**Project site** <https://github.com/google/gtm-session-fetcher><br>
+**Discussion group** <http://groups.google.com/group/google-toolbox-for-mac>
+
+[![Build Status](https://travis-ci.org/google/gtm-session-fetcher.svg?branch=master)](https://travis-ci.org/google/gtm-session-fetcher)
+
+`GTMSessionFetcher` makes it easy for Cocoa applications to perform http
+operations. The fetcher is implemented as a wrapper on `NSURLSession`, so its
+behavior is asynchronous and uses operating-system settings on iOS and Mac OS X.
+
+Features include:
+- Simple to build; only one source/header file pair is required
+- Simple to use: takes just two lines of code to fetch a request
+- Supports upload and download sessions
+- Flexible cookie storage
+- Automatic retry on errors, with exponential backoff
+- Support for generating multipart MIME upload streams
+- Easy, convenient logging of http requests and responses
+- Supports plug-in authentication such as with GTMAppAuth
+- Easily testable; self-mocking
+- Automatic rate limiting when created by the `GTMSessionFetcherService` factory class
+- Fully independent of other projects