rggen-markdown 0.22.0 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +4 -3
- data/lib/rggen/markdown/version.rb +1 -1
- data/lib/rggen/markdown.rb +12 -14
- metadata +6 -7
- data/lib/rggen/markdown/setup.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa6ab490517fe6eee0f488987df11f09ea7b0cc2b61d10f623e46aee5d31c43c
|
4
|
+
data.tar.gz: 9a9b04f6bb2687a50ed44289b49077ac773f800da801ad1ca9a7a78ed407908f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21d330b6f739eb472b70fd64874ad9778d11ee17377b4d4a34cdee8b4aa8660358e98988b6d44c4593bf24c5573863caa9a3fe52b086cb300beffd4934640627
|
7
|
+
data.tar.gz: e458ce3107cd97e730a48bde7d2696f422d45e20895283110f12e972b53a21c35c6e46e21e2beadac703c286d41b6c26fdbc79ed36c2695ed49e1179e7cc2429
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2019-
|
3
|
+
Copyright (c) 2019-2023 Taichi Ishitani
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -17,7 +17,7 @@ During RgGen installation, RgGen::Markdown will also be installed automatically.
|
|
17
17
|
$ gem install rggen
|
18
18
|
```
|
19
19
|
|
20
|
-
If you to install RgGen::Markdown only, use the command below:
|
20
|
+
If you want to install RgGen::Markdown only, use the command below:
|
21
21
|
|
22
22
|
```
|
23
23
|
$ gem install rggen-markdown
|
@@ -27,14 +27,15 @@ $ gem install rggen-markdown
|
|
27
27
|
|
28
28
|
Feedbacks, bug reports, questions and etc. are wellcome! You can post them by using following ways:
|
29
29
|
|
30
|
-
* [GitHub Issue Tracker](https://github.com/rggen/rggen
|
30
|
+
* [GitHub Issue Tracker](https://github.com/rggen/rggen/issues)
|
31
|
+
* [GitHub Discussions](https://github.com/rggen/rggen/discussions)
|
31
32
|
* [Chat Room](https://gitter.im/rggen/rggen)
|
32
33
|
* [Mailing List](https://groups.google.com/d/forum/rggen)
|
33
34
|
* [Mail](mailto:rggen@googlegroups.com)
|
34
35
|
|
35
36
|
## Copyright & License
|
36
37
|
|
37
|
-
Copyright © 2019-
|
38
|
+
Copyright © 2019-2023 Taichi Ishitani. RgGen::Markdown is licensed under the [MIT License](https://opensource.org/licenses/MIT), see [LICENSE](LICENSE) for futher details.
|
38
39
|
|
39
40
|
## Code of Conduct
|
40
41
|
|
data/lib/rggen/markdown.rb
CHANGED
@@ -8,20 +8,18 @@ require_relative 'markdown/component'
|
|
8
8
|
require_relative 'markdown/feature'
|
9
9
|
require_relative 'markdown/factories'
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
extend Core::Plugin
|
11
|
+
RgGen.setup_plugin :'rggen-markdown' do |plugin|
|
12
|
+
plugin.version RgGen::Markdown::VERSION
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
plugin.files [
|
22
|
-
'markdown/register/markdown',
|
23
|
-
'markdown/register_block/markdown'
|
24
|
-
]
|
25
|
-
end
|
14
|
+
plugin.register_component :markdown do
|
15
|
+
component RgGen::Markdown::Component,
|
16
|
+
RgGen::Markdown::ComponentFactory
|
17
|
+
feature RgGen::Markdown::Feature,
|
18
|
+
RgGen::Markdown::FeatureFactory
|
26
19
|
end
|
20
|
+
|
21
|
+
plugin.files [
|
22
|
+
'markdown/register_block/markdown',
|
23
|
+
'markdown/register/markdown'
|
24
|
+
]
|
27
25
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rggen-markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taichi Ishitani
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -43,7 +43,6 @@ files:
|
|
43
43
|
- lib/rggen/markdown/register/markdown.rb
|
44
44
|
- lib/rggen/markdown/register_block/markdown.erb
|
45
45
|
- lib/rggen/markdown/register_block/markdown.rb
|
46
|
-
- lib/rggen/markdown/setup.rb
|
47
46
|
- lib/rggen/markdown/utility.rb
|
48
47
|
- lib/rggen/markdown/utility/source_file.rb
|
49
48
|
- lib/rggen/markdown/utility/table_formatter.rb
|
@@ -52,7 +51,7 @@ homepage: https://github.com/rggen/rggen-markdown
|
|
52
51
|
licenses:
|
53
52
|
- MIT
|
54
53
|
metadata:
|
55
|
-
bug_tracker_uri: https://github.com/rggen/rggen
|
54
|
+
bug_tracker_uri: https://github.com/rggen/rggen/issues
|
56
55
|
mailing_list_uri: https://groups.google.com/d/forum/rggen
|
57
56
|
rubygems_mfa_required: 'true'
|
58
57
|
source_code_uri: https://github.com/rggen/rggen-markdown
|
@@ -65,15 +64,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
64
|
requirements:
|
66
65
|
- - ">="
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: '2.
|
67
|
+
version: '2.7'
|
69
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
69
|
requirements:
|
71
70
|
- - ">="
|
72
71
|
- !ruby/object:Gem::Version
|
73
72
|
version: '0'
|
74
73
|
requirements: []
|
75
|
-
rubygems_version: 3.
|
74
|
+
rubygems_version: 3.4.1
|
76
75
|
signing_key:
|
77
76
|
specification_version: 4
|
78
|
-
summary: rggen-markdown-0.
|
77
|
+
summary: rggen-markdown-0.24.0
|
79
78
|
test_files: []
|