[Add] FaceSDKNightly 6.4.2314
[CocoaPods.git] / Specs / 5 / f / a / ReactiveCocoaEx / 4.1.0 / ReactiveCocoaEx.podspec.json
blob07e8fd672a380c2910b8479bf99fb213a2ab30d7
2   "name": "ReactiveCocoaEx",
3   "version": "4.1.0",
4   "summary": "homemade ReactiveCocoa that only works for iOS and don't have deprecation warnings!",
5   "description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming.\nIt provides APIs for composing and transforming streams of values.",
6   "homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Hai Feng Kao": "haifeng@cocoaspice.com"
13   },
14   "platforms": {
15     "ios": "8.0"
16   },
17   "source": {
18     "git": "https://github.com/haifengkao/ReactiveCocoaEx.git",
19     "tag": "v4.1.0Ex"
20   },
21   "dependencies": {
22     "Result": [
23       "~> 2.0"
24     ]
25   },
26   "frameworks": "Foundation",
27   "default_subspecs": "UI",
28   "prepare_command": "sed -i '' 's@<ReactiveCocoa/\\(.*\\)>@\"\\1\"@g' ReactiveCocoa/ReactiveCocoa.h",
29   "subspecs": [
30     {
31       "name": "no-arc",
32       "source_files": "ReactiveCocoa/Objective-C/RACObjCRuntime.{h,m}",
33       "requires_arc": false
34     },
35     {
36       "name": "Core",
37       "source_files": "ReactiveCocoa/**/*.{d,h,m}",
38       "exclude_files": [
39         "ReactiveCocoa/**/*{RACObjCRuntime,AppKit,NSControl,NSText,NSTable}*"
40       ],
41       "header_dir": "ReactiveCocoa",
42       "private_header_files": [
43         "**/*Private.h",
44         "**/*EXTRuntimeExtensions.h",
45         "**/RACEmpty*.h"
46       ],
47       "dependencies": {
48         "ReactiveCocoa/no-arc": [
50         ]
51       },
52       "watchos": {
53         "exclude_files": "**/NSURLConnection*",
54         "pod_target_xcconfig": {
55           "GCC_PREPROCESSOR_DEFINITIONS": "DTRACE_PROBES_DISABLED=1"
56         }
57       }
58     },
59     {
60       "name": "UI",
61       "dependencies": {
62         "ReactiveCocoa/Core": [
64         ]
65       },
66       "ios": {
67         "source_files": [
69         ],
70         "frameworks": "UIKit"
71       },
72       "osx": {
73         "source_files": [
74           "**/ReactiveCocoa.h",
75           "ReactiveCocoa/**/*{AppKit,NSControl,NSText,NSTable}*"
76         ],
77         "frameworks": "AppKit"
78       },
79       "tvos": {
80         "source_files": [
81           "**/ReactiveCocoa.h",
82           "ReactiveCocoa/**/*{UIButton,UICollectionReusableView,UIControl,UIGestureRecognizer,UISegmentedControl,UITableViewCell,UITableViewHeaderFooterView,UIText}*"
83         ]
84       },
85       "watchos": {
86         "source_files": "**/ReactiveCocoa.h"
87       }
88     }
89   ]