rggen 0.9.0 → 0.10.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 +22 -3
- data/lib/rggen/built_in/global/array_port_format.rb +1 -1
- data/lib/rggen/built_in/version.rb +1 -1
- metadata +10 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e09995dab930b6561855eac179c962d2ff0fe1b27911fdbd1ee9a0afa960ea6
|
4
|
+
data.tar.gz: cac78a33759860a229a043a6fc5f84d5bc7d451690308db6b2d11c035072eca5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a629f19469e932d34e3ee0b8354d847535b516d3e132188b718ab7514fdd0648720e212cbe75f2a9ea69c9adad7f66759e806a5af1a11ce17644d0819a29a0fb
|
7
|
+
data.tar.gz: 738543fc8968a66e0296f71ca26252a6046b51def7998da03815596a42092146d72e6f876f27d7669b7b6a432e6a094f51375bf45ce72851db8fc617491d3f91
|
data/README.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/rggen.svg)](https://badge.fury.io/rb/rggen)
|
1
2
|
[![Build Status](https://travis-ci.org/rggen/rggen.svg?branch=master)](https://travis-ci.org/rggen/rggen)
|
2
3
|
[![Maintainability](https://api.codeclimate.com/v1/badges/5ee2248300ec0517e597/maintainability)](https://codeclimate.com/github/rggen/rggen/maintainability)
|
3
4
|
[![codecov](https://codecov.io/gh/rggen/rggen/branch/master/graph/badge.svg)](https://codecov.io/gh/rggen/rggen)
|
4
5
|
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=rggen_rggen&metric=alert_status)](https://sonarcloud.io/dashboard?id=rggen_rggen)
|
6
|
+
[![Gitter](https://badges.gitter.im/rggen/rggen.svg)](https://gitter.im/rggen/rggen?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
5
7
|
|
6
8
|
# RgGen
|
7
9
|
|
@@ -30,13 +32,13 @@ RgGen is written in the [Ruby](https://www.ruby-lang.org/en/about/) programing l
|
|
30
32
|
|
31
33
|
### Installatin Command
|
32
34
|
|
33
|
-
|
35
|
+
RgGen depends on [RgGen::Core](https://github.com/rggen/rggen-core), [RgGen::SystemVerilog](https://github.com/rggen/rggen-systemverilog), [RgGen::SpreadsheetLoader](https://github.com/rggen/rggen-spreadsheet-loader) and other Ruby libraries. To install RgGen and dependencies, use the command below:
|
34
36
|
|
35
37
|
```
|
36
38
|
$ gem install rggen
|
37
39
|
```
|
38
40
|
|
39
|
-
RgGen and
|
41
|
+
RgGen and dependencies will be installed on your system root.
|
40
42
|
|
41
43
|
If you want to install them on other location, you need to specify install path and set the `GEM_PATH` environment variable:
|
42
44
|
|
@@ -45,6 +47,15 @@ $ gem install --install-dir YOUR_INSTALL_DIRECTORY rggen
|
|
45
47
|
$ export GEM_PATH=YOUR_INSTALL_DIRECTORY
|
46
48
|
```
|
47
49
|
|
50
|
+
You would get the following error message duaring installation if you have the old RgGen (version < 0.9).
|
51
|
+
|
52
|
+
```
|
53
|
+
ERROR: Error installing rggen:
|
54
|
+
"rggen" from rggen-core conflicts with installed executable from rggen
|
55
|
+
```
|
56
|
+
|
57
|
+
To resolve the above error, there are three solutions. See [this page](https://github.com/rggen/rggen/wiki/Resolve-Confliction-of-Installed-Executable)
|
58
|
+
|
48
59
|
## Usage
|
49
60
|
|
50
61
|
See [Wiki documents](https://github.com/rggen/rggen/wiki).
|
@@ -54,7 +65,15 @@ See [Wiki documents](https://github.com/rggen/rggen/wiki).
|
|
54
65
|
Feedbacks, bug reports, questions and etc. are wellcome! You can post them by using following ways:
|
55
66
|
|
56
67
|
* [GitHub Issue Tracker](https://github.com/rggen/rggen/issues)
|
57
|
-
* [
|
68
|
+
* [Chat Room](https://gitter.im/rggen/rggen)
|
69
|
+
* [Mailing List](https://groups.google.com/d/forum/rggen)
|
70
|
+
* [Mail](mailto:rggen@googlegroups.com)
|
71
|
+
|
72
|
+
## See Also
|
73
|
+
|
74
|
+
* https://github.com/rggen/rggen-core
|
75
|
+
* https://github.com/rggen/rggen-systemverilog
|
76
|
+
* https://github.com/rggen/rggen-spreadsheet-loader
|
58
77
|
|
59
78
|
## Copyright & License
|
60
79
|
|
@@ -4,7 +4,7 @@ RgGen.define_simple_feature(:global, :array_port_format) do
|
|
4
4
|
configuration do
|
5
5
|
property :array_port_format, default: :packed
|
6
6
|
|
7
|
-
input_pattern /(packed|unpacked|
|
7
|
+
input_pattern /(packed|unpacked|serialized)/i
|
8
8
|
ignore_empty_value false
|
9
9
|
|
10
10
|
build do |value|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rggen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2019-07-
|
11
|
+
date: 2019-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rggen-core
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.10'
|
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: '0.
|
26
|
+
version: '0.10'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rggen-spreadsheet-loader
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0.
|
33
|
+
version: '0.10'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0.
|
40
|
+
version: '0.10'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rggen-systemverilog
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0.
|
47
|
+
version: '0.10'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0.
|
54
|
+
version: '0.10'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -71,7 +71,7 @@ description: |
|
|
71
71
|
It will automatically generate soruce code related to control/status registers (CSR), e.g. SytemVerilog RTL, UVM RAL model,
|
72
72
|
from human readable register map documents.
|
73
73
|
email:
|
74
|
-
-
|
74
|
+
- rggen@googlegroups.com
|
75
75
|
executables: []
|
76
76
|
extensions: []
|
77
77
|
extra_rdoc_files: []
|
@@ -150,6 +150,7 @@ licenses:
|
|
150
150
|
- MIT
|
151
151
|
metadata:
|
152
152
|
bug_tracker_uri: https://github.com/rggen/rggen/issues
|
153
|
+
mailing_list_uri: https://groups.google.com/d/forum/rggen
|
153
154
|
source_code_uri: https://github.com/rggen/rggen
|
154
155
|
wiki_uri: https://github.com/rggen/rggen/wiki
|
155
156
|
post_install_message:
|