rggen-duh 0.5.0 → 0.7.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: 6b5ce08e269e78df704f19710e47175c0767d0c09f0f9d97b8fef2365dd3d7b9
4
- data.tar.gz: 80800a7f97dc36786d61ed1773e71fc1ce7f618506584bf8194f40c4b779820a
3
+ metadata.gz: 85b0997b2a0a9fe550f2a1994dc80296b2454bd9df63ae173329760fa93aa005
4
+ data.tar.gz: a90eef24c4a54cfc3f0fcfabd6bdadfa7e424ab47c957d76eaf42866fba3355d
5
5
  SHA512:
6
- metadata.gz: 91021bac959ff0d798cb32e08b9bc43d366b0e6b7b1e0348087eee61db022c49b74e2550ad731861cd33e894786e0f528ca95dadecd766418448aaa98c0d998e
7
- data.tar.gz: 3bbde57d20911503ad739f5bd2d8ffba5c61f1e599383725cb6f1ae7e102358401f17bc917f79e09eaa2eb18f2122457f4d0a08fe9480db73e324110762802c3
6
+ metadata.gz: 9c280dcb6a519d33880deaeb388e3405f6e7a15b93ca75d3f4760270460bba20478962388bcbe1fa11d493a12fe29d992fce39c013f798fda10aea15ceff5c65
7
+ data.tar.gz: 63abf2c4b7c96cbb00f763979dfdf58de862443753ecd5f6c92661ec3347ef7b14f2ab367ea3c8da971e7891f8432c157e77edd60bfaab1d0d833c2dcd3bc613
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020-2022 Taichi Ishitani
3
+ Copyright (c) 2020-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
@@ -43,6 +43,8 @@ Following table describes which RgGen bit field types are supported by DUH forma
43
43
  | rwtrg | no | | | | |
44
44
  | ro | yes | read-only | don't care | not specified | no |
45
45
  | rotrg | no | | | | |
46
+ | row0trg | no | | | | |
47
+ | row1trg | no | | | | |
46
48
  | rowo | no | | | | |
47
49
  | rowotrg | no | | | | |
48
50
  | rof | no | | | | |
@@ -80,14 +82,15 @@ Following table describes which RgGen bit field types are supported by DUH forma
80
82
 
81
83
  Feedbacks, bug reports, questions and etc. are wellcome! You can post them by using following ways:
82
84
 
83
- * [GitHub Issue Tracker](https://github.com/rggen/rggen-duh/issues)
85
+ * [GitHub Issue Tracker](https://github.com/rggen/rggen/issues)
86
+ * [GitHub Discussions](https://github.com/rggen/rggen/discussions)
84
87
  * [Chat Room](https://gitter.im/rggen/rggen)
85
88
  * [Mailing List](https://groups.google.com/d/forum/rggen)
86
89
  * [Mail](mailto:rggen@googlegroups.com)
87
90
 
88
91
  ## Copyright & License
89
92
 
90
- Copyright © 2020-2022 Taichi Ishitani. RgGen::DUH is licensed under the [MIT License](https://opensource.org/licenses/MIT), see [LICENSE](LICENSE) for futher details.
93
+ Copyright © 2020-2023 Taichi Ishitani. RgGen::DUH is licensed under the [MIT License](https://opensource.org/licenses/MIT), see [LICENSE](LICENSE) for futher details.
91
94
 
92
95
  ## Notice
93
96
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RgGen
4
4
  module DUH
5
- VERSION = '0.5.0'
5
+ VERSION = '0.7.0'
6
6
  end
7
7
  end
data/lib/rggen/duh.rb CHANGED
@@ -9,17 +9,16 @@ require_relative 'duh/exceptions'
9
9
  require_relative 'duh/schema'
10
10
  require_relative 'duh/loader'
11
11
 
12
- module RgGen
13
- module DUH
14
- extend Core::Plugin
12
+ RgGen.setup_plugin :'rggen-duh' do |plugin|
13
+ plugin.version RgGen::DUH::VERSION
15
14
 
16
- setup_plugin :'rggen-duh' do |plugin|
17
- plugin.register_loader :register_map, :duh, Loader
18
- plugin.files [
19
- 'duh/extractor/bit_assignment',
20
- 'duh/extractor/simple_extractors',
21
- 'duh/extractor/type'
22
- ]
23
- end
15
+ plugin.setup_loader :register_map, :duh do |entry|
16
+ entry.register_loader RgGen::DUH::Loader
24
17
  end
18
+
19
+ plugin.files [
20
+ 'duh/extractor/bit_assignment',
21
+ 'duh/extractor/simple_extractors',
22
+ 'duh/extractor/type'
23
+ ]
25
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rggen-duh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.7.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: 2023-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json_refs
@@ -86,13 +86,12 @@ files:
86
86
  - lib/rggen/duh/extractor/type.rb
87
87
  - lib/rggen/duh/loader.rb
88
88
  - lib/rggen/duh/schema.rb
89
- - lib/rggen/duh/setup.rb
90
89
  - lib/rggen/duh/version.rb
91
90
  homepage: https://github.com/rggen/rggen-duh
92
91
  licenses:
93
92
  - MIT
94
93
  metadata:
95
- bug_tracker_uri: https://github.com/rggen/rggen-duh/issues
94
+ bug_tracker_uri: https://github.com/rggen/rggen/issues
96
95
  mailing_list_uri: https://groups.google.com/d/forum/rggen
97
96
  rubygems_mfa_required: 'true'
98
97
  source_code_uri: https://github.com/rggen/rggen-duh
@@ -105,15 +104,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
104
  requirements:
106
105
  - - ">="
107
106
  - !ruby/object:Gem::Version
108
- version: '2.6'
107
+ version: '2.7'
109
108
  required_rubygems_version: !ruby/object:Gem::Requirement
110
109
  requirements:
111
110
  - - ">="
112
111
  - !ruby/object:Gem::Version
113
112
  version: '0'
114
113
  requirements: []
115
- rubygems_version: 3.3.3
114
+ rubygems_version: 3.4.1
116
115
  signing_key:
117
116
  specification_version: 4
118
- summary: rggen-dut-0.5.0
117
+ summary: rggen-dut-0.7.0
119
118
  test_files: []
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'rggen/duh'
4
- RgGen.register_plugin RgGen::DUH