[Add] IPDSDK 2.0.0.3
[CocoaPods.git] / Specs / 0 / c / 5 / ReactiveCocoaLayout / 0.4 / ReactiveCocoaLayout.podspec.json
blob50e487047fff6b779b072d4741ce24d793ea57af
2   "name": "ReactiveCocoaLayout",
3   "version": "0.4",
4   "summary": "Reactive layout framework built on top of ReactiveCocoa.",
5   "homepage": "https://github.com/ReactiveCocoa/ReactiveCocoaLayout",
6   "authors": {
7     "ReactiveCocoa": "ReactiveCocoa"
8   },
9   "source": {
10     "git": "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git",
11     "tag": "0.4"
12   },
13   "license": "MIT",
14   "description": "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa.",
15   "requires_arc": true,
16   "platforms": {
17     "ios": "6.0",
18     "osx": "10.7"
19   },
20   "source_files": "ReactiveCocoaLayout/*.{h,m}",
21   "dependencies": {
22     "Archimedes": [
24     ],
25     "ReactiveCocoa": [
26       "~> 2.0"
27     ]
28   },
29   "ios": {
30     "frameworks": [
31       "Foundation",
32       "QuartzCore",
33       "CoreGraphics",
34       "UIKit"
35     ],
36     "exclude_files": [
37       "ReactiveCocoaLayout/NSCell*.{h,m}",
38       "ReactiveCocoaLayout/NSControl*.{h,m}",
39       "ReactiveCocoaLayout/NSView*.{h,m}"
40     ]
41   },
42   "osx": {
43     "frameworks": [
44       "Foundation",
45       "QuartzCore",
46       "ApplicationServices",
47       "Cocoa"
48     ],
49     "exclude_files": "ReactiveCocoaLayout/UIView*.{h,m}"
50   },
51   "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",
52   "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"