2 "name": "ReactiveObjCForTDesk",
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",
11 "documentation_url": "https://github.com/ReactiveCocoa/ReactiveObjC/tree/master/Documentation#readme",
12 "authors": "ReactiveCocoa",
13 "social_media_url": "https://twitter.com/ReactiveCocoa",
18 "git": "https://github.com/RoleWong/ReactiveObjC_2023.git",
22 "ReactiveObjC/*.{h,m,d}",
23 "ReactiveObjC/extobjc/*.{h,m}"
25 "private_header_files": [
27 "**/*EXTRuntimeExtensions.h",
31 "exclude_files": "ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable}*"
34 "exclude_files": "ReactiveObjC/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
37 "exclude_files": "ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIDatePicker,UIImagePicker,UIRefreshControl,UISlider,UIStepper,UISwitch,MK}*"
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}*"
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>@' '{}' \\;"