forked from stencilproject/Stencil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStencil.podspec.json
41 lines (41 loc) · 928 Bytes
/
Stencil.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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "Stencil",
"version": "0.4.0",
"summary": "Stencil is a simple and powerful template language for Swift.",
"homepage": "https://github.com/kylef/Stencil",
"license": {
"type": "BSD",
"file": "LICENSE"
},
"authors": {
"Kyle Fuller": "[email protected]"
},
"social_media_url": "http://twitter.com/kylefuller",
"source": {
"git": "https://github.com/kylef/Stencil.git",
"tag": "0.4.0"
},
"source_files": [
"Stencil/*.swift",
"Stencil/TemplateLoader/*.swift"
],
"platforms": {
"ios": "8.0",
"osx": "10.9"
},
"requires_arc": true,
"dependencies": {
"PathKit": [ "~> 0.5.0" ]
},
"test_specification": {
"source_files": [
"StencilSpecs/*.swift",
"StencilSpecs/TemplateLoader/*.swift",
"StencilSpecs/Nodes/*.swift"
],
"dependencies": {
"Spectre": [ "~> 0.4.1" ],
"PathKit": [ "~> 0.5.0" ]
}
}
}