bmt 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bmt/version.rb +1 -1
- data/lib/data/0.1/mappings/templates.json +17 -0
- data/lib/data/0.1/mappings/templates.schema.json +62 -0
- data/lib/data/0.1/methodologies/api_testing.json +659 -0
- data/lib/data/0.1/methodologies/binaries.json +252 -0
- data/lib/data/0.1/methodologies/mobile_android.json +514 -0
- data/lib/data/0.1/methodologies/mobile_ios.json +452 -0
- data/lib/data/0.1/methodologies/network.json +207 -0
- data/lib/data/0.1/methodologies/template.json +83 -0
- data/lib/data/0.1/methodologies/website_testing.json +886 -0
- data/lib/data/0.1/schema.json +124 -0
- metadata +11 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5879e3a860fbbfa5608274c39f20dfe991adea60540b078c794148ce50e2bce
|
4
|
+
data.tar.gz: c271e03be3624c9a3a7877e25ec9a7a55b26e2c6113c5412c4ba9a14f7d7306d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d4cbd1d67936e177631ce6e17ed827d0ff9e197e766960a198d6366f15e10bac6b32931484b10b8049fa46fae7bb507032baf87cf6eb786bd6afbfa229fb02d
|
7
|
+
data.tar.gz: 18ae2aab7612357eaf6bdf4b72cd4ecea19c9fc91b0eec684399ae5fa932cc894abe71a5010f6b16247d508f4ee96a07d3b234fd7c1120008235f86a3e44e427
|
data/lib/bmt/version.rb
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"metadata": {
|
3
|
+
"title": "Methodology Taxonomy Template Mapping"
|
4
|
+
},
|
5
|
+
"content": [
|
6
|
+
{
|
7
|
+
"methodology": "website_testing",
|
8
|
+
"children": [
|
9
|
+
{
|
10
|
+
"key": "information",
|
11
|
+
"attribute": "notes",
|
12
|
+
"template": "information.md"
|
13
|
+
}
|
14
|
+
]
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"title": "Methodology Taxonomy Mapping",
|
4
|
+
"description": "Mapping to methodology taxonomy",
|
5
|
+
"definitions": {
|
6
|
+
"MappingMetadata": {
|
7
|
+
"type": "object",
|
8
|
+
"properties": {
|
9
|
+
"title": {
|
10
|
+
"type": "string",
|
11
|
+
"pattern": "^[ a-zA-Z0-9\\-+()\/,.<]*$"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"required": ["title"]
|
15
|
+
},
|
16
|
+
"BMTKey": { "type": "string", "pattern": "^[a-z_]*$" },
|
17
|
+
"Attribute": { "type": "string", "pattern": "^[a-z_]*$" },
|
18
|
+
"Template": { "type": "string", "pattern": "[a-z_.]*$" },
|
19
|
+
"Mapping": {
|
20
|
+
"type": "object",
|
21
|
+
"properties": {
|
22
|
+
"key": { "$ref": "#/definitions/BMTKey" },
|
23
|
+
"attribute": { "$ref": "#/definitions/Attribute" },
|
24
|
+
"template" : { "$ref": "#/definitions/Template" }
|
25
|
+
},
|
26
|
+
"required": ["key", "attribute", "template"],
|
27
|
+
"additionalProperties": false
|
28
|
+
},
|
29
|
+
"MappingParent": {
|
30
|
+
"type": "object",
|
31
|
+
"properties": {
|
32
|
+
"methodology": { "$ref": "#/definitions/BMTKey" },
|
33
|
+
"children": {
|
34
|
+
"type": "array",
|
35
|
+
"items" : {
|
36
|
+
"anyOf": [
|
37
|
+
{ "$ref": "#/definitions/Mapping" }
|
38
|
+
]
|
39
|
+
}
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"required": ["methodology", "children"],
|
43
|
+
"additionalProperties": false
|
44
|
+
}
|
45
|
+
},
|
46
|
+
"type": "object",
|
47
|
+
"required": ["metadata", "content"],
|
48
|
+
"properties": {
|
49
|
+
"metadata": {
|
50
|
+
"$ref": "#/definitions/MappingMetadata"
|
51
|
+
},
|
52
|
+
"content": {
|
53
|
+
"type": "array",
|
54
|
+
"items" : {
|
55
|
+
"anyOf": [
|
56
|
+
{ "$ref": "#/definitions/MappingParent" },
|
57
|
+
{ "$ref": "#/definitions/Mapping" }
|
58
|
+
]
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|