[Add] HyphenateChat_test1 1.0.1
[CocoaPods.git] / Specs / 4 / 6 / 0 / Fetcher / 0.3.1 / Fetcher.podspec.json
blob3ae7e82bab64c90aaec67325045dce2147b18f2a
2   "name": "Fetcher",
3   "version": "0.3.1",
4   "summary": "Swift HTTP networking library.",
5   "description": "Fetcher is a small HTTP networking library for Swift. Its main goal is to simplify common tasks like sending REST requests. Networking is a very complex subject and our goal is not to cover everything that can be done. But we provide API that allows you to implement what you need or to customize behavior of Fetcher (this is handy if your server for some reason does not obey any standard).",
6   "homepage": "https://github.com/Brightify/Fetcher",
7   "license": "MIT",
8   "authors": {
9     "Tadeas Kriz": "tadeas@brightify.org",
10     "Filip Dolnik": "filip@brightify.org"
11   },
12   "source": {
13     "git": "https://github.com/Brightify/Fetcher.git",
14     "tag": "0.3.1"
15   },
16   "social_media_url": "https://twitter.com/BrightifyOrg",
17   "requires_arc": true,
18   "platforms": {
19     "ios": "8.0",
20     "osx": "10.11"
21   },
22   "frameworks": "Foundation",
23   "default_subspecs": [
24     "Core",
25     "AlamofireRequestPerformer"
26   ],
27   "subspecs": [
28     {
29       "name": "Core",
30       "dependencies": {
31         "DataMapper": [
32           "~> 0.2"
33         ],
34         "Result": [
35           "~> 3.2"
36         ]
37       },
38       "source_files": "Source/Core/**/*.swift"
39     },
40     {
41       "name": "AlamofireRequestPerformer",
42       "dependencies": {
43         "Fetcher/Core": [
45         ],
46         "Alamofire": [
47           "~> 4.3"
48         ]
49       },
50       "source_files": "Source/AlamofireRequestPerformer/**/*.swift"
51     },
52     {
53       "name": "RxFetcher",
54       "dependencies": {
55         "Fetcher/Core": [
57         ],
58         "RxSwift": [
59           "~> 4.0"
60         ]
61       },
62       "source_files": "Source/RxFetcher/**/*.swift"
63     }
64   ]