nanoc 4.9.7 → 4.9.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS.md +6 -0
- data/lib/nanoc/base/entities/configuration-schema.json +116 -0
- data/lib/nanoc/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 548618256c28553abc4a977d01451a6cc0d076a070ff58a7e528041f52e53b66
|
4
|
+
data.tar.gz: e6a056bbaeb122864c9672f184cb6550cb370b5a6cf337712d8ae0a53f813c03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 707973672827bfa9a387ae5bb7ffc7770c8d947659d8029b63f003cfccaa0a67d8ba31a58f9ae9407088ee41116571e7c1df9aeef71473870b40bfed03a3384d
|
7
|
+
data.tar.gz: 27eb07c6f1be344de61150a086890d6dbad44aa39532ac181345c760332b12a28b5f52beafe44bfb83db32911b0642cda4ea96bb98cb24043e0f9a7671e4b78e
|
data/NEWS.md
CHANGED
@@ -0,0 +1,116 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"title": "Nanoc configuration schema",
|
4
|
+
"type": "object",
|
5
|
+
"properties": {
|
6
|
+
"text_extensions": {
|
7
|
+
"type": "array",
|
8
|
+
"items": {
|
9
|
+
"type": "string"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"output_dir": {
|
13
|
+
"type": "string"
|
14
|
+
},
|
15
|
+
"index_filenames": {
|
16
|
+
"type": "array",
|
17
|
+
"items": {
|
18
|
+
"type": "string"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"enable_output_diff": {
|
22
|
+
"type": "boolean"
|
23
|
+
},
|
24
|
+
"prune": {
|
25
|
+
"type": "object",
|
26
|
+
"additionalProperties": false,
|
27
|
+
"properties": {
|
28
|
+
"auto_prune": {
|
29
|
+
"type": "boolean"
|
30
|
+
},
|
31
|
+
"exclude": {
|
32
|
+
"type": "array",
|
33
|
+
"items": {
|
34
|
+
"type": "string"
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"commands_dirs": {
|
40
|
+
"type": "array",
|
41
|
+
"items": {
|
42
|
+
"type": "string"
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"lib_dirs": {
|
46
|
+
"type": "array",
|
47
|
+
"items": {
|
48
|
+
"type": "string"
|
49
|
+
}
|
50
|
+
},
|
51
|
+
"data_sources": {
|
52
|
+
"type": "array",
|
53
|
+
"items": {
|
54
|
+
"type": "object",
|
55
|
+
"properties": {
|
56
|
+
"type": {
|
57
|
+
"type": "string"
|
58
|
+
},
|
59
|
+
"items_root": {
|
60
|
+
"type": "string"
|
61
|
+
},
|
62
|
+
"layouts_root": {
|
63
|
+
"type": "string"
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
},
|
68
|
+
"string_pattern_type": {
|
69
|
+
"type": "string",
|
70
|
+
"enum": ["glob", "legacy"]
|
71
|
+
},
|
72
|
+
"checks": {
|
73
|
+
"type": "object",
|
74
|
+
"properties": {
|
75
|
+
"internal_links": {
|
76
|
+
"type": "object",
|
77
|
+
"additionalProperties": false,
|
78
|
+
"properties": {
|
79
|
+
"exclude": {
|
80
|
+
"type": "array",
|
81
|
+
"items": {
|
82
|
+
"type": "string"
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
},
|
87
|
+
"external_links": {
|
88
|
+
"type": "object",
|
89
|
+
"additionalProperties": false,
|
90
|
+
"properties": {
|
91
|
+
"exclude": {
|
92
|
+
"type": "array",
|
93
|
+
"items": {
|
94
|
+
"type": "string"
|
95
|
+
}
|
96
|
+
},
|
97
|
+
"exclude_files": {
|
98
|
+
"type": "array",
|
99
|
+
"items": {
|
100
|
+
"type": "string"
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
"environments": {
|
108
|
+
"type": "object",
|
109
|
+
"patternProperties": {
|
110
|
+
"^.*$": {
|
111
|
+
"type": "object"
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
data/lib/nanoc/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nanoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.9.
|
4
|
+
version: 4.9.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis Defreyne
|
@@ -191,6 +191,7 @@ files:
|
|
191
191
|
- lib/nanoc/base/entities/action_sequence.rb
|
192
192
|
- lib/nanoc/base/entities/checksum_collection.rb
|
193
193
|
- lib/nanoc/base/entities/code_snippet.rb
|
194
|
+
- lib/nanoc/base/entities/configuration-schema.json
|
194
195
|
- lib/nanoc/base/entities/configuration.rb
|
195
196
|
- lib/nanoc/base/entities/content.rb
|
196
197
|
- lib/nanoc/base/entities/context.rb
|