[Add] FCService 0.0.61-fc
[CocoaPods.git] / Specs / 6 / 1 / 8 / RACObjC / 3.2.1 / RACObjC.podspec.json
blob6ab691d07343579fe8db309b461ceab094de48d1
2   "name": "RACObjC",
3   "version": "3.2.1",
4   "summary": "The 2.x ReactiveCocoa Objective-C API: Streams of values over time",
5   "description": "ReactiveObjC (formally ReactiveCocoa or RAC) is an Objective-C\nframework inspired by [Functional Reactive Programming](\nhttp://en.wikipedia.org/wiki/Functional_reactive_programming).\nIt provides APIs for composing and **transforming streams of values**.",
6   "homepage": "https://github.com/sdkdimon/RACObjC",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "documentation_url": "https://github.com/sdkdimon/RACObjC/tree/master/Documentation#readme",
12   "authors": "Dmitry Lizin",
13   "source": {
14     "git": "https://github.com/sdkdimon/RACObjC.git",
15     "tag": "3.2.1"
16   },
17   "platforms": {
18     "ios": "12.0",
19     "osx": "10.13",
20     "watchos": "2.0",
21     "tvos": "12.0"
22   },
23   "requires_arc": true,
24   "frameworks": "Foundation",
25   "prepare_command": "find -E . -type f -not -name 'RAC*' -regex '.*(EXT.*|metamacros)\\.[hm]$' \\\n          -execdir mv '{}' RAC'{}' \\;\nfind . -regex '.*\\.[hm]' \\\n       -exec perl -pi \\\n                  -e 's@\"(?:(?!RAC)(EXT.*|metamacros))\\.h\"@\"RAC\\1.h\"@' '{}' \\;\nfind . -regex '.*\\.[hm]' \\\n       -exec perl -pi \\\n                  -e 's@<RACObjC/(?:(?!RAC)(EXT.*|metamacros))\\.h>@<RACObjC/RAC\\1.h>@' '{}' \\;",
26   "subspecs": [
27     {
28       "name": "Core",
29       "source_files": [
30         "Core/RACObjC/Classes/EXTObjC/*.{h,m}",
31         "Core/RACObjC/Classes/**/*.{h,m,d}",
32         "Core/RACObjC/RACObjC.h"
33       ],
34       "private_header_files": [
35         "Core/RACObjC/Classes/**/*Private.h",
36         "Core/RACObjC/Classes/**/*EXTRuntimeExtensions.h",
37         "Core/RACObjC/Classes/**/RACEmpty*.h"
38       ]
39     },
40     {
41       "name": "UI",
42       "platforms": {
43         "ios": "12.0",
44         "osx": "10.13",
45         "tvos": "12.0"
46       },
47       "dependencies": {
48         "RACObjC/Core": [
50         ]
51       },
52       "source_files": [
53         "UI/RACObjC-UI/Classes/**/*.{h,m}",
54         "UI/RACObjC-UI/RACObjCUI.h"
55       ],
56       "ios": {
57         "exclude_files": "UI/RACObjC-UI/Classes/**/*{AppKit,NSControl,NSText}*"
58       },
59       "osx": {
60         "exclude_files": "UI/RACObjC-UI/Classes/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
61       },
62       "tvos": {
63         "exclude_files": "UI/RACObjC-UI/Classes/**/*{AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIDatePicker,UIImagePicker,UIRefreshControl,UISlider,UIStepper,UISwitch,MK}*"
64       }
65     }
66   ]