Skip to content

Instantly share code, notes, and snippets.

@drodriguez
Last active November 9, 2016 20:53
Show Gist options
  • Save drodriguez/4578fd8d36a11071e8544e9ad10f9c08 to your computer and use it in GitHub Desktop.
Save drodriguez/4578fd8d36a11071e8544e9ad10f9c08 to your computer and use it in GitHub Desktop.
{
"name": "ReactiveCocoa",
"version": "4.2.1",
"summary": "A framework for composing and transforming streams of values.",
"description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming.\nIt provides APIs for composing and transforming streams of values.",
"homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa",
"license": {
"type": "MIT",
"file": "LICENSE.md"
},
"authors": {
"Josh Abernathy": "josh@github.com"
},
"platforms": {
"ios": "8.0",
"osx": "10.9",
"tvos": "9.0",
"watchos": "2.0"
},
"source": {
"git": "https://github.com/ReactiveCocoa/ReactiveCocoa.git",
"tag": "v4.2.1"
},
"dependencies": {
"Result": [
"~> 2.0"
]
},
"frameworks": "Foundation",
"prepare_command": "find . \\( -name 'EXT*.[hm]' -o -name 'metamacros.h' \\) -execdir mv {} RAC{} \\;\nfind . -name '*.[hm]' -exec sed -i '' -E 's@([/\"])(EXT.*|metamacros)\\.h([>\"])@\\1RAC\\2.h\\3@' {} \\;\nfind . -name 'ReactiveCocoa.h' -exec sed -i '' -E '/UIImagePickerController/d' {} \\;",
"private_header_files": [
"**/*Private.h",
"**/*EXTRuntimeExtensions.h",
"**/RACEmpty*.h"
],
"source_files": "ReactiveCocoa/**/*.{d,h,m,swift}",
"ios": {
"exclude_files": "ReactiveCocoa/**/*{AppKit,NSControl,NSText,NSTable,UIImagePicker}*"
},
"osx": {
"exclude_files": "ReactiveCocoa/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
},
"tvos": {
"exclude_files": "ReactiveCocoa/**/*{AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIDatePicker,UIImagePicker,UIRefreshControl,UISlider,UIStepper,UISwitch,MK}*"
},
"watchos": {
"exclude_files": "ReactiveCocoa/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK,AppKit,NSControl,NSText,NSTable,NSURLConnection}*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment