hyperspeed 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +58 -3
- data/lib/hyperspeed.rb +126 -2
- data/lib/hyperspeed/aria-attributes.json +51 -0
- data/lib/hyperspeed/html-element-attributes.json +600 -0
- data/lib/hyperspeed/html-event-attributes.json +85 -0
- data/lib/hyperspeed/html-link-types.json +35 -0
- data/lib/hyperspeed/html-tag-names.json +150 -0
- data/lib/hyperspeed/html-void-elements.json +25 -0
- data/lib/hyperspeed/mathml-tag-names.json +204 -0
- data/lib/hyperspeed/meta-name.json +379 -0
- data/lib/hyperspeed/svg-element-attributes.json +4282 -0
- data/lib/hyperspeed/svg-tag-names.json +96 -0
- data/lib/hyperspeed/version.rb +1 -1
- data/lib/hyperspeed/web-namespaces.json +8 -0
- metadata +13 -2
@@ -0,0 +1,96 @@
|
|
1
|
+
[
|
2
|
+
"a",
|
3
|
+
"altGlyph",
|
4
|
+
"altGlyphDef",
|
5
|
+
"altGlyphItem",
|
6
|
+
"animate",
|
7
|
+
"animateColor",
|
8
|
+
"animateMotion",
|
9
|
+
"animateTransform",
|
10
|
+
"animation",
|
11
|
+
"audio",
|
12
|
+
"canvas",
|
13
|
+
"circle",
|
14
|
+
"clipPath",
|
15
|
+
"color-profile",
|
16
|
+
"cursor",
|
17
|
+
"defs",
|
18
|
+
"desc",
|
19
|
+
"discard",
|
20
|
+
"ellipse",
|
21
|
+
"feBlend",
|
22
|
+
"feColorMatrix",
|
23
|
+
"feComponentTransfer",
|
24
|
+
"feComposite",
|
25
|
+
"feConvolveMatrix",
|
26
|
+
"feDiffuseLighting",
|
27
|
+
"feDisplacementMap",
|
28
|
+
"feDistantLight",
|
29
|
+
"feDropShadow",
|
30
|
+
"feFlood",
|
31
|
+
"feFuncA",
|
32
|
+
"feFuncB",
|
33
|
+
"feFuncG",
|
34
|
+
"feFuncR",
|
35
|
+
"feGaussianBlur",
|
36
|
+
"feImage",
|
37
|
+
"feMerge",
|
38
|
+
"feMergeNode",
|
39
|
+
"feMorphology",
|
40
|
+
"feOffset",
|
41
|
+
"fePointLight",
|
42
|
+
"feSpecularLighting",
|
43
|
+
"feSpotLight",
|
44
|
+
"feTile",
|
45
|
+
"feTurbulence",
|
46
|
+
"filter",
|
47
|
+
"font",
|
48
|
+
"font-face",
|
49
|
+
"font-face-format",
|
50
|
+
"font-face-name",
|
51
|
+
"font-face-src",
|
52
|
+
"font-face-uri",
|
53
|
+
"foreignObject",
|
54
|
+
"g",
|
55
|
+
"glyph",
|
56
|
+
"glyphRef",
|
57
|
+
"handler",
|
58
|
+
"hkern",
|
59
|
+
"iframe",
|
60
|
+
"image",
|
61
|
+
"line",
|
62
|
+
"linearGradient",
|
63
|
+
"listener",
|
64
|
+
"marker",
|
65
|
+
"mask",
|
66
|
+
"metadata",
|
67
|
+
"missing-glyph",
|
68
|
+
"mpath",
|
69
|
+
"path",
|
70
|
+
"pattern",
|
71
|
+
"polygon",
|
72
|
+
"polyline",
|
73
|
+
"prefetch",
|
74
|
+
"radialGradient",
|
75
|
+
"rect",
|
76
|
+
"script",
|
77
|
+
"set",
|
78
|
+
"solidColor",
|
79
|
+
"stop",
|
80
|
+
"style",
|
81
|
+
"svg",
|
82
|
+
"switch",
|
83
|
+
"symbol",
|
84
|
+
"tbreak",
|
85
|
+
"text",
|
86
|
+
"textArea",
|
87
|
+
"textPath",
|
88
|
+
"title",
|
89
|
+
"tref",
|
90
|
+
"tspan",
|
91
|
+
"unknown",
|
92
|
+
"use",
|
93
|
+
"video",
|
94
|
+
"view",
|
95
|
+
"vkern"
|
96
|
+
]
|
data/lib/hyperspeed/version.rb
CHANGED
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"html": "http://www.w3.org/1999/xhtml",
|
3
|
+
"mathml": "http://www.w3.org/1998/Math/MathML",
|
4
|
+
"svg": "http://www.w3.org/2000/svg",
|
5
|
+
"xlink": "http://www.w3.org/1999/xlink",
|
6
|
+
"xml": "http://www.w3.org/XML/1998/namespace",
|
7
|
+
"xmlns": "http://www.w3.org/2000/xmlns/"
|
8
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyperspeed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fractaledmind
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -70,7 +70,18 @@ files:
|
|
70
70
|
- bin/setup
|
71
71
|
- hyperspeed.gemspec
|
72
72
|
- lib/hyperspeed.rb
|
73
|
+
- lib/hyperspeed/aria-attributes.json
|
74
|
+
- lib/hyperspeed/html-element-attributes.json
|
75
|
+
- lib/hyperspeed/html-event-attributes.json
|
76
|
+
- lib/hyperspeed/html-link-types.json
|
77
|
+
- lib/hyperspeed/html-tag-names.json
|
78
|
+
- lib/hyperspeed/html-void-elements.json
|
79
|
+
- lib/hyperspeed/mathml-tag-names.json
|
80
|
+
- lib/hyperspeed/meta-name.json
|
81
|
+
- lib/hyperspeed/svg-element-attributes.json
|
82
|
+
- lib/hyperspeed/svg-tag-names.json
|
73
83
|
- lib/hyperspeed/version.rb
|
84
|
+
- lib/hyperspeed/web-namespaces.json
|
74
85
|
homepage: https://github.com/fractaledmind/hyperspeed
|
75
86
|
licenses: []
|
76
87
|
metadata: {}
|