[Add] MentaKSAdapter 5.20.35
[CocoaPods.git] / Specs / 0 / d / 2 / ReactiveCocoa / 2.4.7 / ReactiveCocoa.podspec.json
blob207a3e3a90ef01db36a6b4649cb80b3da6c18cb1
2   "name": "ReactiveCocoa",
3   "version": "2.4.7",
4   "summary": "A framework for composing and transforming streams of values.",
5   "homepage": "https://github.com/blog/1107-reactivecocoa-is-now-open-source",
6   "authors": {
7     "Josh Abernathy": "josh@github.com"
8   },
9   "source": {
10     "git": "https://github.com/ReactiveCocoa/ReactiveCocoa.git",
11     "tag": "v2.4.7"
12   },
13   "license": {
14     "type": "MIT",
15     "file": "LICENSE.md"
16   },
17   "description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming. It provides APIs for composing and transforming streams of values.",
18   "requires_arc": true,
19   "platforms": {
20     "ios": "6.0",
21     "osx": "10.8"
22   },
23   "prepare_command": "    find . \\( -regex '.*EXT.*\\.[mh]$' -o -regex '.*metamacros\\.[mh]$' \\) -execdir mv {} RAC{} \\;\n    find . -regex '.*\\.[hm]' -exec sed -i '' -E 's@\"(EXT.*|metamacros)\\.h\"@\"RAC\\1.h\"@' {} \\;\n    find . -regex '.*\\.[hm]' -exec sed -i '' -E 's@<ReactiveCocoa/(EXT.*)\\.h>@<ReactiveCocoa/RAC\\1.h>@' {} \\;\n",
24   "default_subspecs": "UI",
25   "subspecs": [
26     {
27       "name": "no-arc",
28       "source_files": "ReactiveCocoa/RACObjCRuntime.{h,m}",
29       "requires_arc": false
30     },
31     {
32       "name": "Core",
33       "dependencies": {
34         "ReactiveCocoa/no-arc": [
36         ]
37       },
38       "source_files": [
39         "ReactiveCocoa/*.{d,h,m}",
40         "ReactiveCocoa/extobjc/*.{h,m}"
41       ],
42       "private_header_files": [
43         "ReactiveCocoa/*Private.h"
44       ],
45       "exclude_files": "ReactiveCocoa/*{RACObjCRuntime,AppKit,NSControl,NSText,UIActionSheet,UI}*"
46     },
47     {
48       "name": "UI",
49       "dependencies": {
50         "ReactiveCocoa/Core": [
52         ]
53       },
54       "source_files": "ReactiveCocoa/*{AppKit,NSControl,NSText,UI}*",
55       "osx": {
56         "exclude_files": "ReactiveCocoa/UI*"
57       },
58       "ios": {
59         "exclude_files": "ReactiveCocoa/*{AppKit,NSControl,NSText}*"
60       }
61     }
62   ]