flgen 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +110 -76
- data/lib/flgen/file_list.rb +84 -47
- data/lib/flgen/file_list_xsim_formatter.rb +31 -0
- data/lib/flgen/version.rb +1 -1
- data/lib/flgen.rb +1 -0
- metadata +32 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcca98956f35047f290608dcbbf1020017006475cc0d139c05ab070b19d47aa3
|
4
|
+
data.tar.gz: f1f2bb32ae9a4fd5c3466d6a375573fdc6b6944a8130e6c6be03d558f5ac4f58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fea45a268196454d145a21af8c2ac56d62ae6a53aae99851d88dc1a8f3b78b74af4f44b461d60e73b71fcbce3cde24e1d39bf19eeddae1d8d8de81a21550580
|
7
|
+
data.tar.gz: d116c3598283c4e52501e544e8159270776caaff3486a5c8bba77e38de82c4f699ac0b0948e78bd9a2bdaef27a6dfa834594dec15ddb0ef6e629f13ea44ceec0
|
data/README.md
CHANGED
@@ -1,76 +1,86 @@
|
|
1
|
+
[](https://badge.fury.io/rb/flgen)
|
1
2
|
[](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml)
|
3
|
+
[](https://codecov.io/github/pezy-computing/flgen)
|
2
4
|
|
3
5
|
# FLGen
|
4
6
|
|
5
|
-
|
7
|
+
FLGen provides a DSL to write filelists and generator tool to generate a filelist which is given to EDA tools.
|
6
8
|
|
7
|
-
##
|
9
|
+
## Install
|
8
10
|
|
9
11
|
### Ruby
|
10
12
|
|
11
|
-
FLGen
|
12
|
-
サポートする Ruby のバージョンは 3.0 以上です。インストール方法については、[こちら](https://www.ruby-lang.org/en/downloads/)を参照ください。
|
13
|
+
FLGen is written in [Ruby](https://www.ruby-lang.org) programing language and its required version is 3.0 or later. Before using FLGen, you need to install Ruby before using FLGen. See [this page](https://www.ruby-lang.org/en/downloads/) for further details.
|
13
14
|
|
14
|
-
###
|
15
|
+
### Install FLGen
|
15
16
|
|
16
|
-
FLGen
|
17
|
+
Use the command below to isntall FLGen.
|
17
18
|
|
18
19
|
```
|
19
20
|
$ gem install flgen
|
20
21
|
```
|
21
22
|
|
22
|
-
##
|
23
|
+
## Filelist
|
23
24
|
|
24
|
-
|
25
|
+
FLGen prives APIs listed below to describe your filelists.
|
25
26
|
|
26
|
-
* `source_file(path, from: :current)`
|
27
|
-
*
|
28
|
-
* `file_list(path, from: :root)`
|
29
|
-
*
|
27
|
+
* `source_file(path, from: :current, base: nil)`
|
28
|
+
* Add the given source file to the current filelist.
|
29
|
+
* `file_list(path, from: :root, base: nil)`
|
30
|
+
* Load the given filelist.
|
31
|
+
* `include_directory(path, from: :current, base: nil)`
|
32
|
+
* Add the given directory to the list of include direcotries.
|
30
33
|
* `define_macro(name, value = nil)`
|
31
|
-
*
|
32
|
-
* `macro_defined?(name)`
|
33
|
-
*
|
34
|
-
* `
|
35
|
-
*
|
36
|
-
* `
|
37
|
-
* `
|
34
|
+
* Define a text macro.
|
35
|
+
* `macro?(name)`/`macro_defined?(name)`
|
36
|
+
* Return `true` if the given macro is defined.
|
37
|
+
* `file?(path, from: :current, base: nil)`
|
38
|
+
* Return `treu` if the given file exists.
|
39
|
+
* `directory?(path, from: :current, base: nil)`
|
40
|
+
* Return `true` if the given directory exists.
|
41
|
+
* `env?(name)`
|
42
|
+
* Return `true` if the givne environment variable is defined.
|
43
|
+
* `env(name)`
|
44
|
+
* Retunr the value of the given environment variable.
|
38
45
|
* `compile_argument(argument, tool: nil)`
|
39
|
-
*
|
40
|
-
* `tool`
|
41
|
-
* `
|
42
|
-
*
|
43
|
-
* `tool`
|
46
|
+
* Add the given argument to the list of compile arguments.
|
47
|
+
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
48
|
+
* `runtime_argumetn(argument, tool: nil)`
|
49
|
+
* Add the given argument to the list of runtime arguments.
|
50
|
+
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
51
|
+
* `target_tool?(tool)`
|
52
|
+
* Return `true` if the given tool is matched with the targe tool.
|
44
53
|
|
45
|
-
|
54
|
+
FLGen's filelist is designed as an inernal DSL with Ruby. Therefore you can use Ruby's syntax. For example:
|
46
55
|
|
47
56
|
```ruby
|
48
|
-
if
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
10.times do |i|
|
53
|
-
source_file "foo_#{i}.sv"
|
57
|
+
if macro? :GATE_SIM
|
58
|
+
source_file 'foo_top.v.gz' # synthsized netlist
|
59
|
+
else
|
60
|
+
source_file 'foo_top.sv' # RTL
|
54
61
|
end
|
55
62
|
```
|
56
63
|
|
57
|
-
### `from`
|
64
|
+
### About `from`/`base` arguments
|
58
65
|
|
59
|
-
`from`
|
66
|
+
The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
|
60
67
|
|
61
68
|
* `:current`
|
62
|
-
*
|
69
|
+
* Search the given file or directory from the directory where the current filelist is.
|
63
70
|
* `:root`
|
64
|
-
* `.git`
|
65
|
-
*
|
71
|
+
* Search the given file or directory from the repository root directories where the `.git` directory is.
|
72
|
+
* Serch order is descending order.
|
73
|
+
* from upper root direcotries to local root direcoty
|
66
74
|
* `:local_root`
|
67
|
-
*
|
75
|
+
* Search the given file or directory from the repository root directory where the current filelist belongs to.
|
76
|
+
|
77
|
+
The `from` argument is ignored if the given path is an absolute path or the `base` argument is specified.
|
68
78
|
|
69
|
-
|
79
|
+
The `base` argument is to specify the serach direcotry for the given file or directory.
|
70
80
|
|
71
|
-
####
|
81
|
+
#### Example
|
72
82
|
|
73
|
-
|
83
|
+
This is an exmaple directory structure.
|
74
84
|
|
75
85
|
```
|
76
86
|
foo_project
|
@@ -86,61 +96,85 @@ foo_project
|
|
86
96
|
`-- common.sv
|
87
97
|
```
|
88
98
|
|
89
|
-
* `
|
90
|
-
* `foo_project/bar_project/
|
91
|
-
* `
|
92
|
-
* `foo_project/common/common.sv`
|
93
|
-
* `
|
94
|
-
* `foo_project/bar_project/common/common.sv`
|
99
|
+
* `source_file 'bar.sv', from: :current` @ `bar.list.rb`
|
100
|
+
* `foo_project/bar_project/bar.sv` is added.
|
101
|
+
* `source_file 'common/common.sv', from: :root` @ `bar.list.rb`
|
102
|
+
* `foo_project/common/common.sv` is added
|
103
|
+
* `source_file 'common/bar_common.sv', from: :local_root` @ `bar.list.rb`
|
104
|
+
* `foo_project/bar_project/common/common.sv` is added
|
95
105
|
|
96
|
-
##
|
106
|
+
## Generator command
|
97
107
|
|
98
|
-
`flgen`
|
99
|
-
また、以下のオプションがあります。
|
108
|
+
`flgen` is the generator command and generate a filelist which is given to EDA tools from the given filelists. Command line options are listed below.
|
100
109
|
|
101
110
|
* `--define-macro=MACRO[,MACRO]`
|
102
|
-
*
|
111
|
+
* Define the given macros
|
103
112
|
* `--include-directory=DIR[,DIR]`
|
104
|
-
*
|
113
|
+
* Specify include directories
|
105
114
|
* `--compile`
|
106
|
-
*
|
115
|
+
* If this option is specified the generated filelist contains source file path, arguments to define macros, arguments to specify include directories and arguments specified by `compile_argument` API.
|
107
116
|
* `--runtime`
|
108
|
-
*
|
117
|
+
* If this option is specified the generated filelist contains arguments specified by `runtime_argumetn`
|
109
118
|
* `--tool=TOOL`
|
110
|
-
*
|
111
|
-
* `compile_argument`/`runtime_argument` でツールの指定がある場合、一致する引数がファイルリストに出力されます
|
119
|
+
* Specify the target tool.
|
112
120
|
* `--rm-ext=EXT[,EXT]`
|
113
|
-
*
|
121
|
+
* Remove specifyed file extentions from source file path.
|
114
122
|
* `--collect-ext=EXT[,EXT]`
|
115
|
-
*
|
123
|
+
* The generated filelist contains source file pash which has the specified file extentions.
|
124
|
+
* `--format=FORMAT`
|
125
|
+
* Specify the format of the generated filelist.
|
126
|
+
* If no format is specified the generated filelist is for major EDA tools.
|
127
|
+
* If `filelist-xsim` is specified the generated filelist is for Vivado Simulator.
|
116
128
|
* `--output=FILE`
|
117
|
-
*
|
118
|
-
*
|
129
|
+
* Specify the path of the generated filelist
|
130
|
+
* The generated fileslist is output to STDOUT if no path is specified.
|
119
131
|
* `--[no-]print-header`
|
120
|
-
*
|
132
|
+
* Specify whether or not the output filelist includes its file header or not.
|
121
133
|
* `--source-file-only`
|
122
|
-
*
|
134
|
+
* The generated filelist contains source file path only if this option is specified.
|
123
135
|
|
124
|
-
##
|
136
|
+
## Example
|
125
137
|
|
126
|
-
https://github.com/pezy-computing/flgen/tree/master/sample
|
138
|
+
You can find an exmpale from [here](https://github.com/pezy-computing/flgen/tree/master/sample).
|
127
139
|
|
128
|
-
|
140
|
+
```
|
141
|
+
$ flgen --output=filelist.f sample/foo.list.rb
|
142
|
+
$ cat filelist.f
|
143
|
+
// flgen version 0.14.0
|
144
|
+
// applied arguments
|
145
|
+
// --output=filelist.f
|
146
|
+
// sample/foo.list.rb
|
147
|
+
+define+BAR_0
|
148
|
+
+define+BAR_1=1
|
149
|
+
+incdir+/home/taichi/workspace/pezy/flgen/sample/bar
|
150
|
+
+incdir+/home/taichi/workspace/pezy/flgen/sample/bar/baz
|
151
|
+
-foo_0
|
152
|
+
/home/taichi/workspace/pezy/flgen/sample/foo.sv
|
153
|
+
/home/taichi/workspace/pezy/flgen/sample/bar/bar.sv
|
154
|
+
/home/taichi/workspace/pezy/flgen/sample/bar/baz/baz.sv
|
155
|
+
```
|
156
|
+
|
157
|
+
[rggen-sample-testbench](https://github.com/rggen/rggen-sample-testbench) uses FLGen. This can be a practical example.
|
129
158
|
|
130
|
-
|
159
|
+
* https://github.com/rggen/rggen-sample-testbench/blob/master/env/compile.rb
|
160
|
+
* https://github.com/rggen/rggen-sample-testbench/blob/master/rtl/compile.rb
|
131
161
|
|
132
|
-
|
162
|
+
## License
|
133
163
|
|
134
|
-
|
164
|
+
FLGen is licensed under the Apache-2.0 license. See [LICNESE](LICENSE) and below for further details.
|
135
165
|
|
136
|
-
|
137
|
-
|
138
|
-
You may obtain a copy of the License at
|
166
|
+
```
|
167
|
+
Copyright 2022 PEZY Computing K.K.
|
139
168
|
|
140
|
-
|
169
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
170
|
+
you may not use this file except in compliance with the License.
|
171
|
+
You may obtain a copy of the License at
|
141
172
|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
173
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
174
|
+
|
175
|
+
Unless required by applicable law or agreed to in writing, software
|
176
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
177
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
178
|
+
See the License for the specific language governing permissions and
|
179
|
+
limitations under the License.
|
180
|
+
```
|
data/lib/flgen/file_list.rb
CHANGED
@@ -8,27 +8,47 @@ module FLGen
|
|
8
8
|
@root_directories = extract_root
|
9
9
|
end
|
10
10
|
|
11
|
-
def file_list(path, from: :root, raise_error: true)
|
12
|
-
|
13
|
-
load_file_list(
|
11
|
+
def file_list(path, from: :root, base: nil, raise_error: true)
|
12
|
+
location = caller_location
|
13
|
+
load_file_list(path, from, base, location, raise_error)
|
14
14
|
end
|
15
15
|
|
16
|
-
def source_file(path, from: :current, raise_error: true)
|
17
|
-
|
18
|
-
add_source_file(
|
16
|
+
def source_file(path, from: :current, base: nil, raise_error: true)
|
17
|
+
location = caller_location
|
18
|
+
add_source_file(path, from, base, location, raise_error)
|
19
19
|
end
|
20
20
|
|
21
21
|
def define_macro(macro, value = nil)
|
22
22
|
@context.define_macro(macro, value)
|
23
23
|
end
|
24
24
|
|
25
|
-
def
|
25
|
+
def macro?(macro)
|
26
26
|
@context.macros.include?(macro.to_sym)
|
27
27
|
end
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
alias_method :macro_defined?, :macro?
|
30
|
+
|
31
|
+
def include_directory(path, from: :current, base: nil, raise_error: true)
|
32
|
+
location = caller_location
|
33
|
+
add_include_directory(path, from, base, location, raise_error)
|
34
|
+
end
|
35
|
+
|
36
|
+
def file?(path, from: :current, base: nil)
|
37
|
+
location = caller_location
|
38
|
+
!lookup_root(path, from, base, location, :file?).nil?
|
39
|
+
end
|
40
|
+
|
41
|
+
def directory?(path, from: :current, base: nil)
|
42
|
+
location = caller_location
|
43
|
+
!lookup_root(path, from, base, location, :directory?).nil?
|
44
|
+
end
|
45
|
+
|
46
|
+
def env?(name)
|
47
|
+
ENV.key?(name.to_s)
|
48
|
+
end
|
49
|
+
|
50
|
+
def env(name)
|
51
|
+
ENV.fetch(name.to_s, nil)
|
32
52
|
end
|
33
53
|
|
34
54
|
def target_tool?(tool)
|
@@ -61,36 +81,11 @@ module FLGen
|
|
61
81
|
File.exist?(path.join('.git').to_s)
|
62
82
|
end
|
63
83
|
|
64
|
-
def
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
current_directory
|
69
|
-
else
|
70
|
-
lookup_root(path, from, checker)
|
84
|
+
def load_file_list(path, from, base, location, raise_error)
|
85
|
+
unless (root = lookup_root(path, from, base, location, :file?))
|
86
|
+
raise_no_entry_error(path, location, raise_error)
|
87
|
+
return
|
71
88
|
end
|
72
|
-
end
|
73
|
-
|
74
|
-
def absolute_path?(path)
|
75
|
-
Pathname.new(path).absolute?
|
76
|
-
end
|
77
|
-
|
78
|
-
def current_directory
|
79
|
-
# From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
|
80
|
-
# for code string evaluated by eval methods
|
81
|
-
# see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
|
82
|
-
location = caller_locations(3, 1).first
|
83
|
-
path = location.absolute_path || location.path
|
84
|
-
File.dirname(path)
|
85
|
-
end
|
86
|
-
|
87
|
-
def lookup_root(path, from, checker)
|
88
|
-
(from == :root && @root_directories || [@root_directories.last])
|
89
|
-
.find { |root| File.__send__(checker, File.join(root, path)) }
|
90
|
-
end
|
91
|
-
|
92
|
-
def load_file_list(root, path, raise_error)
|
93
|
-
entry_exist?(root, path, :file?, raise_error) || return
|
94
89
|
|
95
90
|
# Need to File.realpath to resolve symblic link
|
96
91
|
list_path = File.realpath(concat_path(root, path))
|
@@ -105,26 +100,68 @@ module FLGen
|
|
105
100
|
@context.loaded_file_lists.include?(path)
|
106
101
|
end
|
107
102
|
|
108
|
-
def add_source_file(
|
109
|
-
|
103
|
+
def add_source_file(path, from, base, location, raise_error)
|
104
|
+
unless (root = lookup_root(path, from, base, location, :file?))
|
105
|
+
raise_no_entry_error(path, location, raise_error)
|
106
|
+
return
|
107
|
+
end
|
108
|
+
|
110
109
|
@context.add_source_file(root, path)
|
111
110
|
end
|
112
111
|
|
113
|
-
def add_include_directory(
|
114
|
-
|
112
|
+
def add_include_directory(path, from, base, location, raise_error)
|
113
|
+
unless (root = lookup_root(path, from, base, location, :directory?))
|
114
|
+
raise_no_entry_error(path, location, raise_error)
|
115
|
+
return
|
116
|
+
end
|
115
117
|
|
116
118
|
directory_path = concat_path(root, path)
|
117
119
|
@context.add_include_directory(directory_path)
|
118
120
|
end
|
119
121
|
|
120
|
-
def
|
121
|
-
|
122
|
-
|
123
|
-
|
122
|
+
def caller_location
|
123
|
+
caller_locations(2, 1).first
|
124
|
+
end
|
125
|
+
|
126
|
+
def lookup_root(path, from, base, location, checker)
|
127
|
+
search_root(path, from, base, location)
|
128
|
+
.find { |root| File.__send__(checker, concat_path(root, path)) }
|
129
|
+
end
|
130
|
+
|
131
|
+
def search_root(path, from, base, location)
|
132
|
+
if absolute_path?(path)
|
133
|
+
['']
|
134
|
+
elsif !base.nil?
|
135
|
+
[base]
|
136
|
+
elsif from == :current
|
137
|
+
[current_directory(location)]
|
138
|
+
elsif from == :local_root
|
139
|
+
[@root_directories.last]
|
140
|
+
else
|
141
|
+
@root_directories
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
def absolute_path?(path)
|
146
|
+
Pathname.new(path).absolute?
|
147
|
+
end
|
148
|
+
|
149
|
+
def current_directory(location)
|
150
|
+
# From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
|
151
|
+
# for code string evaluated by eval methods
|
152
|
+
# see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
|
153
|
+
path = location.absolute_path || location.path
|
154
|
+
File.dirname(path)
|
124
155
|
end
|
125
156
|
|
126
157
|
def concat_path(root, path)
|
127
158
|
File.expand_path(path, root)
|
128
159
|
end
|
160
|
+
|
161
|
+
def raise_no_entry_error(path, location, raise_error)
|
162
|
+
return unless raise_error
|
163
|
+
|
164
|
+
raise NoEntryError.new(path, location)
|
165
|
+
end
|
129
166
|
end
|
130
167
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module FLGen
|
4
|
+
class FileListXsimFormatter < Formatter
|
5
|
+
def format_header_line(line)
|
6
|
+
"// #{line}"
|
7
|
+
end
|
8
|
+
|
9
|
+
def format_macro(macro, value)
|
10
|
+
if value.nil?
|
11
|
+
"-d #{macro}"
|
12
|
+
else
|
13
|
+
"-d #{macro}=#{value}"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def format_include_directory(directory)
|
18
|
+
"-i #{directory}"
|
19
|
+
end
|
20
|
+
|
21
|
+
def fomrat_argument(argument)
|
22
|
+
argument
|
23
|
+
end
|
24
|
+
|
25
|
+
def format_file_path(path)
|
26
|
+
path
|
27
|
+
end
|
28
|
+
|
29
|
+
Formatter.add_formatter(:'filelist-xsim', self)
|
30
|
+
end
|
31
|
+
end
|
data/lib/flgen/version.rb
CHANGED
data/lib/flgen.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flgen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taichi Ishitani
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bump
|
@@ -80,6 +80,34 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.40.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.21.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.21.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: simplecov-cobertura
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.1.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.1.0
|
83
111
|
description: Filelist generator
|
84
112
|
email:
|
85
113
|
- ishitani@pezy.co.jp
|
@@ -98,6 +126,7 @@ files:
|
|
98
126
|
- lib/flgen/exceptions.rb
|
99
127
|
- lib/flgen/file_list.rb
|
100
128
|
- lib/flgen/file_list_formatter.rb
|
129
|
+
- lib/flgen/file_list_xsim_formatter.rb
|
101
130
|
- lib/flgen/formatter.rb
|
102
131
|
- lib/flgen/source_file.rb
|
103
132
|
- lib/flgen/version.rb
|
@@ -130,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
159
|
- !ruby/object:Gem::Version
|
131
160
|
version: '0'
|
132
161
|
requirements: []
|
133
|
-
rubygems_version: 3.
|
162
|
+
rubygems_version: 3.4.2
|
134
163
|
signing_key:
|
135
164
|
specification_version: 4
|
136
165
|
summary: Filelist generator
|