[Add] MoneyHashPayment 2.2.14
[CocoaPods.git] / Specs / 6 / 1 / 8 / RACObjC / 3.3.0 / RACObjC.podspec.json
blobdcb1151a6fc4c4bb592cb9a74e298e487fd5ecc8
2   "name": "RACObjC",
3   "version": "3.3.0",
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.3.0"
16   },
17   "platforms": {
18     "ios": "12.0",
19     "osx": "10.13",
20     "watchos": "2.0",
21     "tvos": "12.0"
22   },
23   "module_map": "Core/RACObjC/RACObjC.modulemap",
24   "source_files": [
25     "Core/RACObjC/Classes/EXTObjC/*.{h,m}",
26     "Core/RACObjC/Classes/**/*.{h,m,d}",
27     "Core/RACObjC/RACObjC.h"
28   ],
29   "private_header_files": [
30     "Core/RACObjC/Classes/**/*Private.h",
31     "Core/RACObjC/Classes/**/*EXTRuntimeExtensions.h",
32     "Core/RACObjC/Classes/**/RACEmpty*.h"
33   ],
34   "requires_arc": true,
35   "frameworks": "Foundation",
36   "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>@' '{}' \\;"