Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.

Commit 95e5789

Browse files
committed
.podspec
1 parent faa3ce9 commit 95e5789

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

ReactiveViewModel.podspec.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "ReactiveViewModel",
3+
"version": "0.4",
4+
"summary": "Model-View-ViewModel, using ReactiveCocoa.",
5+
"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.",
6+
"homepage": "https://github.com/ReactiveCocoa/ReactiveViewModel",
7+
"license": {
8+
"type": "MIT",
9+
"file": "LICENSE.md"
10+
},
11+
"authors": {
12+
"Alan Rogers": "[email protected]",
13+
"Just Spahr-Summers": "[email protected]",
14+
"Josh Abernathy": "[email protected]"
15+
},
16+
"platforms": {
17+
"ios": "6.0",
18+
"osx": "10.8"
19+
},
20+
"source": {
21+
"git": "https://github.com/ReactiveCocoa/ReactiveViewModel.git",
22+
"tag": "0.4"
23+
},
24+
"source_files": "ReactiveViewModel/*.{h,m}",
25+
"requires_arc": true,
26+
"dependencies": {
27+
"ReactiveObjC": [
28+
"~> 2.1"
29+
]
30+
},
31+
"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"
32+
}

0 commit comments

Comments
 (0)