motion-markdown-it-plugins 8.4.1 → 8.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/motion-markdown-it-plugins.rb +12 -4
- data/lib/motion-markdown-it-plugins/emoji/emoji.rb +34 -0
- data/lib/motion-markdown-it-plugins/emoji/emoji_light.rb +18 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/data/full.rb +1490 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/data/light.rb +161 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/data/shortcuts.rb +36 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/normalize_opts.rb +72 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/render.rb +9 -0
- data/lib/motion-markdown-it-plugins/emoji/plugin/replace.rb +101 -0
- data/lib/motion-markdown-it-plugins/version.rb +1 -1
- data/spec/emoji/emoji_spec.rb +115 -0
- data/spec/testgen_helper.rb +1 -1
- metadata +14 -4
data/spec/testgen_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-markdown-it-plugins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.4.
|
4
|
+
version: 8.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Walker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: motion-markdown-it
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '8.
|
19
|
+
version: '8.4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '8.
|
26
|
+
version: '8.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bacon-expect
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,6 +50,14 @@ files:
|
|
50
50
|
- lib/motion-markdown-it-plugins/checkbox_replace/checkbox_replace.rb
|
51
51
|
- lib/motion-markdown-it-plugins/container/container.rb
|
52
52
|
- lib/motion-markdown-it-plugins/deflist/deflist.rb
|
53
|
+
- lib/motion-markdown-it-plugins/emoji/emoji.rb
|
54
|
+
- lib/motion-markdown-it-plugins/emoji/emoji_light.rb
|
55
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/data/full.rb
|
56
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/data/light.rb
|
57
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/data/shortcuts.rb
|
58
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/normalize_opts.rb
|
59
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/render.rb
|
60
|
+
- lib/motion-markdown-it-plugins/emoji/plugin/replace.rb
|
53
61
|
- lib/motion-markdown-it-plugins/header_sections/header_sections.rb
|
54
62
|
- lib/motion-markdown-it-plugins/ins/ins.rb
|
55
63
|
- lib/motion-markdown-it-plugins/mark/mark.rb
|
@@ -62,6 +70,7 @@ files:
|
|
62
70
|
- spec/container/default_spec.rb
|
63
71
|
- spec/container/misc_spec.rb
|
64
72
|
- spec/deflist/deflist_spec.rb
|
73
|
+
- spec/emoji/emoji_spec.rb
|
65
74
|
- spec/header_sections/header_sections_spec.rb
|
66
75
|
- spec/ins/ins_spec.rb
|
67
76
|
- spec/mark/mark_spec.rb
|
@@ -96,6 +105,7 @@ summary: Plugins for motion-markdown-it
|
|
96
105
|
test_files:
|
97
106
|
- spec/spec_helper.rb
|
98
107
|
- spec/mark/mark_spec.rb
|
108
|
+
- spec/emoji/emoji_spec.rb
|
99
109
|
- spec/sup/sup_spec.rb
|
100
110
|
- spec/container/api_spec.rb
|
101
111
|
- spec/container/default_spec.rb
|