[Add] LastFM.swift 1.5.0
[CocoaPods.git] / Specs / e / 1 / 0 / ReactiveObjCForTDesk / 4.0.0 / ReactiveObjCForTDesk.podspec.json
blobf1a9be537d56859684f2362956712fd92d8bf8e1
2   "name": "ReactiveObjCForTDesk",
3   "version": "4.0.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://reactivecocoa.io",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE.md"
10   },
11   "documentation_url": "https://github.com/ReactiveCocoa/ReactiveObjC/tree/master/Documentation#readme",
12   "authors": "ReactiveCocoa",
13   "social_media_url": "https://twitter.com/ReactiveCocoa",
14   "platforms": {
15     "ios": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/RoleWong/ReactiveObjC_2023.git",
19     "tag": "4.0.0"
20   },
21   "source_files": [
22     "ReactiveObjC/*.{h,m,d}",
23     "ReactiveObjC/extobjc/*.{h,m}"
24   ],
25   "private_header_files": [
26     "**/*Private.h",
27     "**/*EXTRuntimeExtensions.h",
28     "**/RACEmpty*.h"
29   ],
30   "ios": {
31     "exclude_files": "ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable}*"
32   },
33   "osx": {
34     "exclude_files": "ReactiveObjC/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
35   },
36   "tvos": {
37     "exclude_files": "ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIDatePicker,UIImagePicker,UIRefreshControl,UISlider,UIStepper,UISwitch,MK}*"
38   },
39   "watchos": {
40     "exclude_files": "ReactiveObjC/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK,AppKit,NSControl,NSText,NSTable,NSURLConnection}*"
41   },
42   "requires_arc": true,
43   "frameworks": "Foundation",
44   "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@<ReactiveObjC/(?:(?!RAC)(EXT.*))\\.h>@<ReactiveObjC/RAC\\1.h>@' '{}' \\;"