Skip to content

Instantly share code, notes, and snippets.

@tomtaylor
Created August 10, 2015 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomtaylor/bd1dffe0ea59388fdcf2 to your computer and use it in GitHub Desktop.
Save tomtaylor/bd1dffe0ea59388fdcf2 to your computer and use it in GitHub Desktop.
{
"name": "ReactiveCocoa",
"version": "3.0-RC.1",
"summary": "A framework for composing and transforming streams of values",
"description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming. It provides APIs for composing and transforming streams of values.\n",
"homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa",
"license": "MIT",
"authors": {
"Josh Abernathy": "josh@github.com"
},
"platforms": {
"ios": "8.0",
"osx": "10.10"
},
"source": {
"git": "https://github.com/ReactiveCocoa/ReactiveCocoa.git",
"branch": "swift2"
},
"default_subspecs": "UI",
"dependencies": {
"Result": [
"= 0.6-beta.1"
]
},
"subspecs": [
{
"name": "no-arc",
"source_files": "ReactiveCocoa/Objective-C/RACObjCRuntime.{h,m}",
"requires_arc": false,
"frameworks": "Foundation"
},
{
"name": "Core",
"source_files": "ReactiveCocoa/**/*.{d,h,m,swift}",
"exclude_files": [
"**/ReactiveCocoa.h",
"ReactiveCocoa/**/*{RACObjCRuntime,AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
],
"header_dir": "ReactiveCocoa",
"private_header_files": [
"**/*Private.h",
"**/*EXTRuntimeExtensions.h",
"**/RACEmpty*.h"
],
"frameworks": "Foundation",
"dependencies": {
"ReactiveCocoa/no-arc": [
]
}
},
{
"name": "UI",
"dependencies": {
"ReactiveCocoa/Core": [
]
},
"frameworks": "Foundation",
"ios": {
"source_files": [
"**/ReactiveCocoa.h",
"ReactiveCocoa/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*"
],
"frameworks": "UIKit"
},
"osx": {
"source_files": [
"**/ReactiveCocoa.h",
"ReactiveCocoa/**/*{AppKit,NSControl,NSText,NSTable}*"
],
"frameworks": "AppKit"
}
}
]
}
@shams-ahmed
Copy link

@tomtaylor i can't get this to work, what are you using in your podfile?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment