forked from ReactiveCocoa/ReactiveViewModel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReactiveViewModel.podspec.json
30 lines (30 loc) · 1.3 KB
/
ReactiveViewModel.podspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "ReactiveViewModel",
"version": "0.4",
"summary": "Model-View-ViewModel, using ReactiveCocoa.",
"description": "ReactiveViewModel is a combination code/documentation project for building Cocoa applications using Model-View-ViewModel and ReactiveCocoa.\n\nBy explaining rationale, documenting best practices, and providing reusable library components, we want to make MVVM in Objective-C appealing and easy.",
"homepage": "https://github.com/ReactiveCocoa/ReactiveViewModel",
"license": {
"type": "MIT",
"file": "LICENSE.md"
},
"authors": {
"Alan Rogers": "alan@github.com",
"Just Spahr-Summers": "Justin.SpahrSummers@gmail.com",
"Josh Abernathy": "joshaber@gmail.com"
},
"platforms": {
"ios": "6.0",
"osx": "10.8"
},
"source": {
"git": "https://github.com/ReactiveCocoa/ReactiveViewModel.git",
"tag": "0.4"
},
"source_files": "ReactiveViewModel/*.{h,m}",
"requires_arc": true,
"dependencies": {
"ReactiveObjC": []
},
"prepare_command": "find . \\( -regex '.*EXT.*\\.[mh]$' -o -regex '.*metamacros\\.[mh]$' \\) -execdir mv {} RAC{} \\;\nfind . -regex '.*\\.[hm]' -exec sed -i '' -E 's@\"(EXT.*|metamacros)\\.h\"@\"RAC\\1.h\"@' {} \\;\nfind . -regex '.*\\.[hm]' -exec sed -i '' -E 's@<ReactiveObjC/(EXT.*)\\.h>@<ReactiveObjC/RAC\\1.h>@' {} \\;\n"
}