rggen-markdown 0.22.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3ae3495f980639a7db1ffc2f53a79dfc26e9c5b50fa19509f39bc53edf28002
4
- data.tar.gz: 32667aa4de67539bc42f53aecfb6a19a7231b5352b08a0f77ad88b8024e81510
3
+ metadata.gz: b80423dd457da00191f9c0623535ced32b9cfffc0a4e0234104a97bc34d30c5c
4
+ data.tar.gz: 54fafa2f584f8174d00ebdc7a82f5e6b56d81b55db1e592e094869ad76cecf87
5
5
  SHA512:
6
- metadata.gz: ae83be4c35e52d31028d0be63d0a1f5bd6759037464307c0d7a7ade5f11f2fa47da40272de3913e6fc2bd0c916a45e1a588e8228a6c8b1c88dba5aef99b5f24c
7
- data.tar.gz: bbef244e569df6dbae34a407cb6ca42c985355392f8b8e774258d6376f85bceaeff5a0863993c595a48366a08fa3e2befba8e78444d5876caf7831b6a4d680f6
6
+ metadata.gz: 00d46912a2f44aef4edf37d4e8f4e6deba65f386a1a6b6e0f2985029e3bad879bcadfdc917423d67d1a1cd7905492e0991f21af2ecad2216679054416df7cae8
7
+ data.tar.gz: aafec148dc87ae5c66a463dfed54301258307604dcf9a507f98a7402cc37a5ee4fc8de4f1ef11cb5d51f8a8c93c173180f13011e630d5c8dfa960608dac956fc
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,7 +27,8 @@ $ 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-markdown/issues)
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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RgGen
4
4
  module Markdown
5
- VERSION = '0.22.0'
5
+ VERSION = '0.23.0'
6
6
  end
7
7
  end
@@ -8,20 +8,18 @@ require_relative 'markdown/component'
8
8
  require_relative 'markdown/feature'
9
9
  require_relative 'markdown/factories'
10
10
 
11
- module RgGen
12
- module Markdown
13
- extend Core::Plugin
11
+ RgGen.setup_plugin :'rggen-markdown' do |plugin|
12
+ plugin.version RgGen::Markdown::VERSION
14
13
 
15
- setup_plugin :'rggen-markdown' do |plugin|
16
- plugin.register_component :markdown do
17
- component Component, ComponentFactory
18
- feature Feature, FeatureFactory
19
- end
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.22.0
4
+ version: 0.23.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: 2022-03-25 00:00:00.000000000 Z
11
+ date: 2022-07-05 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-markdown/issues
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
@@ -75,5 +74,5 @@ requirements: []
75
74
  rubygems_version: 3.3.3
76
75
  signing_key:
77
76
  specification_version: 4
78
- summary: rggen-markdown-0.22.0
77
+ summary: rggen-markdown-0.23.0
79
78
  test_files: []
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'rggen/markdown'
4
-
5
- RgGen.register_plugin RgGen::Markdown do |builder|
6
- builder.enable :register_block, [:markdown]
7
- builder.enable :register, [:markdown]
8
- end