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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c98696eca3ffddc4f49695ec9fe26ad40bebaa8b4ef432a9a24455059ec675f
4
- data.tar.gz: 2d4cacf96065ceeebf2c5a662fd0d2f2706e9fb97363a3990eec9e77d06d1ad8
3
+ metadata.gz: bcca98956f35047f290608dcbbf1020017006475cc0d139c05ab070b19d47aa3
4
+ data.tar.gz: f1f2bb32ae9a4fd5c3466d6a375573fdc6b6944a8130e6c6be03d558f5ac4f58
5
5
  SHA512:
6
- metadata.gz: '065852d3c973c0a108e1fccaea7cf7219e9c734fe9f75adff152ddd05df406fe8cb3d92a1a6281bf5494b22d279c60b7d69ba2eec0a104fcfe6a6badbda1dcfe'
7
- data.tar.gz: 70eb64d338dad8169c3a577228b4640fa91c4e5645aa8432401996aa95696a53cca8d5d0e2d1b01568e0a7082b1a00fd0692a4650c508a9945cf56e420d1429a
6
+ metadata.gz: 3fea45a268196454d145a21af8c2ac56d62ae6a53aae99851d88dc1a8f3b78b74af4f44b461d60e73b71fcbce3cde24e1d39bf19eeddae1d8d8de81a21550580
7
+ data.tar.gz: d116c3598283c4e52501e544e8159270776caaff3486a5c8bba77e38de82c4f699ac0b0948e78bd9a2bdaef27a6dfa834594dec15ddb0ef6e629f13ea44ceec0
data/README.md CHANGED
@@ -1,76 +1,86 @@
1
+ [![Gem Version](https://badge.fury.io/rb/flgen.svg)](https://badge.fury.io/rb/flgen)
1
2
  [![CI](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml/badge.svg)](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml)
3
+ [![codecov](https://codecov.io/github/pezy-computing/flgen/branch/master/graph/badge.svg?token=P5JSMPRV3J)](https://codecov.io/github/pezy-computing/flgen)
2
4
 
3
5
  # FLGen
4
6
 
5
- ファイルリストを記述するための DSL と、ファイルリストを生成するための実行コマンドを提供します。
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 [Ruby](https://www.ruby-lang.org) で実装されているので、実行には Ruby のインストールが必要です。
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
- ## DSL
23
+ ## Filelist
23
24
 
24
- ファイルリストを記述するための DSL として以下の構文が定義されています。
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
- * `include_directory(path, from: :current)`
35
- * 指定したパスをインクルードパスとして追加します
36
- * `target_tool?(tool)`
37
- * `tool` が対象ツールかどうかを返します
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
- * `runtime_argument(argument, tool: nil)`
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
- Ruby の言語内 DSL として実装されているので、以下の様に `if` など Ruby の構文も使用することができます。
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 target_tool? :vcs
49
- compile_argument '-sverilog'
50
- end
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` は指定されたファイルやディレクトリの基準ディレクトリを指定する引数で、`:current`/`root`/`local_root` を指定することができます。
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
- * あるリポジトリのサブモジュール (上位階層にも `.git` がある) 場合、上位リポジトリのルートディレクトリから順に検索を行います
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
- ただし、与えられたファイルやディレクトリが絶対パスで指定されている場合は、`from` に関係なく、そのまま追加されます。
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
- * `bar.list.rb` で `source_file 'bar.sv', from: :current` とある場合
90
- * `foo_project/bar_project/src/bar.sv` が追加される
91
- * `bar.list.rb` で `source_file 'common/common.sv', from: :root` とある場合
92
- * `foo_project/common/common.sv` が追加される
93
- * `bar.list.rb` で `source_file 'common/common.sv', from: :local_root` とある場合
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` が実行コマンドです。`flgen` DSL で記述されたファイルリストを与えると、EDA ツールに与えるためのファイルリストを出力します。
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
- * 出力されるファイルリストは `runtime_argument` で指定された実行時引数を含みません
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
- * 出力されるファイルリストは `runtime_argument` で指定された実行時引数だけを含みます
117
+ * If this option is specified the generated filelist contains arguments specified by `runtime_argumetn`
109
118
  * `--tool=TOOL`
110
- * 対象となる EDA ツールを指定します
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
- Apache-2.0 ライセンスの元で公開しています。詳しくは、下記及び [LICENSE](LICENSE) を参照ください。
162
+ ## License
133
163
 
134
- Copyright 2022 PEZY Computing K.K.
164
+ FLGen is licensed under the Apache-2.0 license. See [LICNESE](LICENSE) and below for further details.
135
165
 
136
- Licensed under the Apache License, Version 2.0 (the "License");
137
- you may not use this file except in compliance with the License.
138
- You may obtain a copy of the License at
166
+ ```
167
+ Copyright 2022 PEZY Computing K.K.
139
168
 
140
- http://www.apache.org/licenses/LICENSE-2.0
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
- Unless required by applicable law or agreed to in writing, software
143
- distributed under the License is distributed on an "AS IS" BASIS,
144
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145
- See the License for the specific language governing permissions and
146
- limitations under the License.
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
+ ```
@@ -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
- root = find_root(path, from, :file?)
13
- load_file_list(root, path, raise_error)
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
- root = find_root(path, from, :file?)
18
- add_source_file(root, path, raise_error)
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 macro_defined?(macro)
25
+ def macro?(macro)
26
26
  @context.macros.include?(macro.to_sym)
27
27
  end
28
28
 
29
- def include_directory(path, from: :current, raise_error: true)
30
- root = find_root(path, from, :directory?)
31
- add_include_directory(root, path, raise_error)
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 find_root(path, from, checker)
65
- if absolute_path?(path)
66
- ''
67
- elsif from == :current
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(root, path, raise_error)
109
- entry_exist?(root, path, :file?, raise_error) || return
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(root, path, raise_error)
114
- entry_exist?(root, path, :directory?, raise_error) || return
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 entry_exist?(root, path, checker, raise_error)
121
- result = root && File.__send__(checker, concat_path(root, path)) || false
122
- result ||
123
- raise_error && (raise NoEntryError.new(path, caller_locations(3, 1)[0]))
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FLGen
4
- VERSION = '0.14.0'
4
+ VERSION = '0.15.0'
5
5
  end
data/lib/flgen.rb CHANGED
@@ -11,4 +11,5 @@ require_relative 'flgen/file_list'
11
11
  require_relative 'flgen/context'
12
12
  require_relative 'flgen/formatter'
13
13
  require_relative 'flgen/file_list_formatter'
14
+ require_relative 'flgen/file_list_xsim_formatter'
14
15
  require_relative 'flgen/cli'
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.14.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: 2022-12-16 00:00:00.000000000 Z
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.3.3
162
+ rubygems_version: 3.4.2
134
163
  signing_key:
135
164
  specification_version: 4
136
165
  summary: Filelist generator