blob: 50e487047fff6b779b072d4741ce24d793ea57af [file] [log] [blame]
{
"name": "ReactiveCocoaLayout",
"version": "0.4",
"summary": "Reactive layout framework built on top of ReactiveCocoa.",
"homepage": "https://github.com/ReactiveCocoa/ReactiveCocoaLayout",
"authors": {
"ReactiveCocoa": "ReactiveCocoa"
},
"source": {
"git": "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git",
"tag": "0.4"
},
"license": "MIT",
"description": "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa.",
"requires_arc": true,
"platforms": {
"ios": "6.0",
"osx": "10.7"
},
"source_files": "ReactiveCocoaLayout/*.{h,m}",
"dependencies": {
"Archimedes": [
],
"ReactiveCocoa": [
"~> 2.0"
]
},
"ios": {
"frameworks": [
"Foundation",
"QuartzCore",
"CoreGraphics",
"UIKit"
],
"exclude_files": [
"ReactiveCocoaLayout/NSCell*.{h,m}",
"ReactiveCocoaLayout/NSControl*.{h,m}",
"ReactiveCocoaLayout/NSView*.{h,m}"
]
},
"osx": {
"frameworks": [
"Foundation",
"QuartzCore",
"ApplicationServices",
"Cocoa"
],
"exclude_files": "ReactiveCocoaLayout/UIView*.{h,m}"
},
"prepare_command": " find . \\( -regex '.*EXT.*\\.[mh]$' -o -regex '.*metamacros\\.[mh]$' \\) -execdir mv {} RAC{} \\;\n find . -regex '.*\\.[hm]' -exec sed -i '' -E 's@\"(EXT.*|metamacros)\\.h\"@\"RAC\\1.h\"@' {} \\;\n find . -regex '.*\\.[hm]' -exec sed -i '' -E 's@<ReactiveCocoa/(EXT.*)\\.h>@<ReactiveCocoa/RAC\\1.h>@' {} \\;\n",
"prefix_header_contents": "#ifdef __OBJC__\n#import <ReactiveCocoa/ReactiveCocoa.h>\n#import <ReactiveCocoaLayout/ReactiveCocoaLayout.h>\n#import <Archimedes/Archimedes.h>\n#ifdef __IPHONE_OS_VERSION_MIN_REQUIRED\n #import <CoreGraphics/CoreGraphics.h>\n#elif TARGET_OS_MAC\n #import <ApplicationServices/ApplicationServices.h>\n#endif\n#import <QuartzCore/QuartzCore.h>\n#endif\n\n"
}