fbe 0.0.85 → 0.1.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/.0pdd.yml +2 -19
- data/.github/workflows/actionlint.yml +4 -20
- data/.github/workflows/codecov.yml +8 -22
- data/.github/workflows/copyrights.yml +4 -19
- data/.github/workflows/markdown-lint.yml +4 -19
- data/.github/workflows/pdd.yml +4 -19
- data/.github/workflows/rake.yml +6 -22
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/xcop.yml +4 -19
- data/.github/workflows/yamllint.yml +4 -19
- data/.gitignore +7 -5
- data/.rubocop.yml +8 -20
- data/.rultor.yml +4 -20
- data/.simplecov +2 -19
- data/.yamllint.yml +2 -19
- data/Gemfile +11 -27
- data/Gemfile.lock +79 -57
- data/LICENSE.txt +1 -1
- data/LICENSES/MIT.txt +21 -0
- data/REUSE.toml +31 -0
- data/Rakefile +3 -28
- data/assets/bylaws/dud-was-punished.liquid +1 -1
- data/fbe.gemspec +3 -20
- data/lib/fbe/award.rb +29 -30
- data/lib/fbe/bylaws.rb +2 -21
- data/lib/fbe/conclude.rb +4 -23
- data/lib/fbe/copy.rb +2 -21
- data/lib/fbe/enter.rb +2 -21
- data/lib/fbe/fb.rb +4 -23
- data/lib/fbe/github_graph.rb +3 -22
- data/lib/fbe/if_absent.rb +3 -22
- data/lib/fbe/issue.rb +2 -21
- data/lib/fbe/iterate.rb +3 -22
- data/lib/fbe/just_one.rb +3 -22
- data/lib/fbe/middleware/formatter.rb +3 -22
- data/lib/fbe/middleware/quota.rb +3 -22
- data/lib/fbe/middleware.rb +3 -22
- data/lib/fbe/octo.rb +6 -25
- data/lib/fbe/overwrite.rb +3 -22
- data/lib/fbe/pmp.rb +2 -21
- data/lib/fbe/regularly.rb +2 -21
- data/lib/fbe/repeatedly.rb +2 -21
- data/lib/fbe/sec.rb +2 -21
- data/lib/fbe/unmask_repos.rb +2 -21
- data/lib/fbe/who.rb +2 -21
- data/lib/fbe.rb +4 -21
- data/rules/basic.fe +1 -1
- data/test/fbe/middleware/test_formatter.rb +12 -29
- data/test/fbe/middleware/test_quota.rb +2 -22
- data/test/fbe/test_award.rb +7 -27
- data/test/fbe/test_bylaws.rb +6 -26
- data/test/fbe/test_conclude.rb +3 -23
- data/test/fbe/test_copy.rb +4 -24
- data/test/fbe/test_enter.rb +3 -23
- data/test/fbe/test_fb.rb +8 -28
- data/test/fbe/test_github_graph.rb +18 -38
- data/test/fbe/test_if_absent.rb +7 -28
- data/test/fbe/test_issue.rb +3 -23
- data/test/fbe/test_iterate.rb +3 -23
- data/test/fbe/test_just_one.rb +4 -24
- data/test/fbe/test_octo.rb +12 -32
- data/test/fbe/test_overwrite.rb +4 -24
- data/test/fbe/test_pmp.rb +4 -24
- data/test/fbe/test_regularly.rb +3 -23
- data/test/fbe/test_repeatedly.rb +3 -23
- data/test/fbe/test_sec.rb +3 -23
- data/test/fbe/test_unmask_repos.rb +7 -27
- data/test/fbe/test_who.rb +3 -23
- data/test/test__helper.rb +2 -19
- data/test/test_fbe.rb +4 -22
- metadata +10 -10
data/Gemfile.lock
CHANGED
@@ -5,7 +5,7 @@ PATH
|
|
5
5
|
backtrace (~> 0)
|
6
6
|
baza.rb (~> 0)
|
7
7
|
decoor (~> 0)
|
8
|
-
factbase (
|
8
|
+
factbase (>= 0.7.4)
|
9
9
|
faraday (~> 2)
|
10
10
|
faraday-http-cache (~> 2)
|
11
11
|
faraday-multipart (~> 1)
|
@@ -70,17 +70,17 @@ GEM
|
|
70
70
|
tago (~> 0)
|
71
71
|
typhoeus (~> 1.3)
|
72
72
|
benchmark (0.4.0)
|
73
|
-
bigdecimal (3.1.
|
73
|
+
bigdecimal (3.1.9)
|
74
74
|
builder (3.3.0)
|
75
|
-
concurrent-ruby (1.3.
|
76
|
-
connection_pool (2.
|
75
|
+
concurrent-ruby (1.3.5)
|
76
|
+
connection_pool (2.5.0)
|
77
77
|
crack (1.0.0)
|
78
78
|
bigdecimal
|
79
79
|
rexml
|
80
80
|
crass (1.0.6)
|
81
81
|
date (3.4.1)
|
82
82
|
decoor (0.0.1)
|
83
|
-
diff-lcs (1.
|
83
|
+
diff-lcs (1.6.0)
|
84
84
|
docile (1.4.1)
|
85
85
|
drb (2.2.1)
|
86
86
|
elapsed (0.0.1)
|
@@ -89,7 +89,7 @@ GEM
|
|
89
89
|
erubi (1.13.1)
|
90
90
|
ethon (0.16.0)
|
91
91
|
ffi (>= 1.15.0)
|
92
|
-
factbase (0.4
|
92
|
+
factbase (0.7.4)
|
93
93
|
backtrace (> 0)
|
94
94
|
decoor (> 0)
|
95
95
|
json (~> 2.7)
|
@@ -110,33 +110,36 @@ GEM
|
|
110
110
|
net-http (>= 0.5.0)
|
111
111
|
faraday-retry (2.2.1)
|
112
112
|
faraday (~> 2.0)
|
113
|
-
ffi (1.17.
|
114
|
-
ffi (1.17.
|
115
|
-
ffi (1.17.
|
116
|
-
ffi (1.17.
|
113
|
+
ffi (1.17.1-arm64-darwin)
|
114
|
+
ffi (1.17.1-x64-mingw-ucrt)
|
115
|
+
ffi (1.17.1-x86_64-darwin)
|
116
|
+
ffi (1.17.1-x86_64-linux-gnu)
|
117
117
|
fiber-storage (1.0.0)
|
118
|
-
gli (2.22.
|
119
|
-
|
118
|
+
gli (2.22.2)
|
119
|
+
ostruct
|
120
|
+
graphql (2.4.11)
|
120
121
|
base64
|
121
122
|
fiber-storage
|
123
|
+
logger
|
122
124
|
graphql-client (0.25.0)
|
123
125
|
activesupport (>= 3.0)
|
124
126
|
graphql (>= 1.13.0)
|
125
127
|
hashdiff (1.1.2)
|
126
|
-
i18n (1.14.
|
128
|
+
i18n (1.14.7)
|
127
129
|
concurrent-ruby (~> 1.0)
|
128
130
|
io-console (0.8.0)
|
129
|
-
irb (1.
|
131
|
+
irb (1.15.1)
|
132
|
+
pp (>= 0.6.0)
|
130
133
|
rdoc (>= 4.0.0)
|
131
134
|
reline (>= 0.4.2)
|
132
|
-
iri (0.
|
133
|
-
json (2.
|
134
|
-
judges (0.
|
135
|
+
iri (0.10.0)
|
136
|
+
json (2.10.1)
|
137
|
+
judges (0.34.0)
|
135
138
|
backtrace (~> 0)
|
136
139
|
baza.rb (~> 0)
|
137
140
|
concurrent-ruby (~> 1.2)
|
138
141
|
elapsed (~> 0)
|
139
|
-
factbase (
|
142
|
+
factbase (>= 0.7.0)
|
140
143
|
gli (~> 2.21)
|
141
144
|
iri (~> 0)
|
142
145
|
loog (~> 0)
|
@@ -145,11 +148,13 @@ GEM
|
|
145
148
|
others (~> 0)
|
146
149
|
retries (~> 0)
|
147
150
|
tago (~> 0)
|
151
|
+
timeout (~> 0)
|
148
152
|
typhoeus (~> 1.3)
|
149
|
-
language_server-protocol (3.17.0.
|
153
|
+
language_server-protocol (3.17.0.4)
|
154
|
+
lint_roller (1.1.0)
|
150
155
|
liquid (5.5.1)
|
151
|
-
logger (1.6.
|
152
|
-
loofah (2.
|
156
|
+
logger (1.6.6)
|
157
|
+
loofah (2.24.0)
|
153
158
|
crass (~> 1.0.2)
|
154
159
|
nokogiri (>= 1.12.0)
|
155
160
|
loog (0.6.0)
|
@@ -163,32 +168,37 @@ GEM
|
|
163
168
|
multipart-post (2.4.1)
|
164
169
|
net-http (0.6.0)
|
165
170
|
uri
|
166
|
-
nokogiri (1.
|
171
|
+
nokogiri (1.18.3-arm64-darwin)
|
167
172
|
racc (~> 1.4)
|
168
|
-
nokogiri (1.
|
173
|
+
nokogiri (1.18.3-x64-mingw-ucrt)
|
169
174
|
racc (~> 1.4)
|
170
|
-
nokogiri (1.
|
175
|
+
nokogiri (1.18.3-x86_64-darwin)
|
171
176
|
racc (~> 1.4)
|
172
|
-
nokogiri (1.
|
177
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
173
178
|
racc (~> 1.4)
|
174
179
|
obk (0.3.1)
|
175
180
|
octokit (9.2.0)
|
176
181
|
faraday (>= 1, < 3)
|
177
182
|
sawyer (~> 0.9)
|
183
|
+
ostruct (0.6.1)
|
178
184
|
others (0.0.3)
|
179
185
|
parallel (1.26.3)
|
180
|
-
parser (3.3.
|
186
|
+
parser (3.3.7.1)
|
181
187
|
ast (~> 2.4.1)
|
182
188
|
racc
|
183
|
-
|
189
|
+
pp (0.6.2)
|
190
|
+
prettyprint
|
191
|
+
prettyprint (0.2.0)
|
192
|
+
psych (5.2.3)
|
184
193
|
date
|
185
194
|
stringio
|
186
195
|
public_suffix (6.0.1)
|
187
196
|
racc (1.8.1)
|
188
|
-
rack (3.1.
|
189
|
-
rack-session (2.
|
197
|
+
rack (3.1.10)
|
198
|
+
rack-session (2.1.0)
|
199
|
+
base64 (>= 0.1.0)
|
190
200
|
rack (>= 3.0.0)
|
191
|
-
rack-test (2.
|
201
|
+
rack-test (2.2.0)
|
192
202
|
rack (>= 1.3)
|
193
203
|
rackup (2.2.1)
|
194
204
|
rack (>= 3)
|
@@ -209,14 +219,14 @@ GEM
|
|
209
219
|
zeitwerk (~> 2.6)
|
210
220
|
rainbow (3.1.1)
|
211
221
|
rake (13.2.1)
|
212
|
-
rdoc (6.
|
222
|
+
rdoc (6.12.0)
|
213
223
|
psych (>= 4.0.0)
|
214
|
-
regexp_parser (2.
|
224
|
+
regexp_parser (2.10.0)
|
215
225
|
reline (0.6.0)
|
216
226
|
io-console (~> 0.5)
|
217
227
|
retries (0.0.5)
|
218
|
-
rexml (3.4.
|
219
|
-
rspec-core (3.13.
|
228
|
+
rexml (3.4.1)
|
229
|
+
rspec-core (3.13.3)
|
220
230
|
rspec-support (~> 3.13.0)
|
221
231
|
rspec-expectations (3.13.3)
|
222
232
|
diff-lcs (>= 1.2.0, < 2.0)
|
@@ -224,7 +234,7 @@ GEM
|
|
224
234
|
rspec-mocks (3.13.2)
|
225
235
|
diff-lcs (>= 1.2.0, < 2.0)
|
226
236
|
rspec-support (~> 3.13.0)
|
227
|
-
rspec-rails (7.1.
|
237
|
+
rspec-rails (7.1.1)
|
228
238
|
actionpack (>= 7.0)
|
229
239
|
activesupport (>= 7.0)
|
230
240
|
railties (>= 7.0)
|
@@ -233,23 +243,33 @@ GEM
|
|
233
243
|
rspec-mocks (~> 3.13)
|
234
244
|
rspec-support (~> 3.13)
|
235
245
|
rspec-support (3.13.2)
|
236
|
-
rubocop (1.
|
246
|
+
rubocop (1.73.1)
|
237
247
|
json (~> 2.3)
|
238
|
-
language_server-protocol (
|
248
|
+
language_server-protocol (~> 3.17.0.2)
|
249
|
+
lint_roller (~> 1.1.0)
|
239
250
|
parallel (~> 1.10)
|
240
251
|
parser (>= 3.3.0.2)
|
241
252
|
rainbow (>= 2.2.2, < 4.0)
|
242
253
|
regexp_parser (>= 2.9.3, < 3.0)
|
243
|
-
rubocop-ast (>= 1.
|
254
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
244
255
|
ruby-progressbar (~> 1.7)
|
245
256
|
unicode-display_width (>= 2.4.0, < 4.0)
|
246
|
-
rubocop-ast (1.
|
257
|
+
rubocop-ast (1.38.1)
|
247
258
|
parser (>= 3.3.1.0)
|
248
|
-
rubocop-
|
249
|
-
|
250
|
-
rubocop
|
251
|
-
|
252
|
-
|
259
|
+
rubocop-minitest (0.37.1)
|
260
|
+
lint_roller (~> 1.1)
|
261
|
+
rubocop (>= 1.72.1, < 2.0)
|
262
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
263
|
+
rubocop-performance (1.24.0)
|
264
|
+
lint_roller (~> 1.1)
|
265
|
+
rubocop (>= 1.72.1, < 2.0)
|
266
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
267
|
+
rubocop-rake (0.7.1)
|
268
|
+
lint_roller (~> 1.1)
|
269
|
+
rubocop (>= 1.72.1)
|
270
|
+
rubocop-rspec (3.5.0)
|
271
|
+
lint_roller (~> 1.1)
|
272
|
+
rubocop (~> 1.72, >= 1.72.1)
|
253
273
|
ruby-progressbar (1.13.0)
|
254
274
|
sawyer (0.9.2)
|
255
275
|
addressable (>= 2.3.5)
|
@@ -264,28 +284,29 @@ GEM
|
|
264
284
|
simplecov (~> 0.19)
|
265
285
|
simplecov-html (0.13.1)
|
266
286
|
simplecov_json_formatter (0.1.4)
|
267
|
-
stringio (3.1.
|
287
|
+
stringio (3.1.5)
|
268
288
|
tago (0.0.2)
|
269
289
|
thor (1.3.2)
|
290
|
+
timeout (0.4.3)
|
270
291
|
typhoeus (1.4.1)
|
271
292
|
ethon (>= 0.9.0)
|
272
293
|
tzinfo (2.0.6)
|
273
294
|
concurrent-ruby (~> 1.0)
|
274
|
-
unicode-display_width (3.1.
|
295
|
+
unicode-display_width (3.1.4)
|
275
296
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
276
297
|
unicode-emoji (4.0.4)
|
277
|
-
uri (1.0.
|
298
|
+
uri (1.0.3)
|
278
299
|
useragent (0.16.11)
|
279
300
|
verbose (0.0.2)
|
280
301
|
loog (~> 0.2)
|
281
302
|
tago (~> 0.0)
|
282
|
-
webmock (3.
|
303
|
+
webmock (3.25.0)
|
283
304
|
addressable (>= 2.8.0)
|
284
305
|
crack (>= 0.3.2)
|
285
306
|
hashdiff (>= 0.4.0, < 2.0.0)
|
286
307
|
yaml (0.4.0)
|
287
308
|
yard (0.9.37)
|
288
|
-
zeitwerk (2.7.
|
309
|
+
zeitwerk (2.7.2)
|
289
310
|
|
290
311
|
PLATFORMS
|
291
312
|
arm64-darwin-22
|
@@ -298,17 +319,18 @@ PLATFORMS
|
|
298
319
|
|
299
320
|
DEPENDENCIES
|
300
321
|
fbe!
|
301
|
-
graphql-client
|
302
322
|
minitest (= 5.25.4)
|
303
|
-
minitest-reporters (
|
304
|
-
rake (
|
305
|
-
rspec-rails (
|
306
|
-
rubocop (= 1.
|
307
|
-
rubocop-
|
308
|
-
rubocop-
|
323
|
+
minitest-reporters (>= 1.7)
|
324
|
+
rake (>= 13)
|
325
|
+
rspec-rails (> 0)
|
326
|
+
rubocop (= 1.73.1)
|
327
|
+
rubocop-minitest (> 0)
|
328
|
+
rubocop-performance (> 0)
|
329
|
+
rubocop-rake (> 0)
|
330
|
+
rubocop-rspec (> 0)
|
309
331
|
simplecov (= 0.22.0)
|
310
332
|
simplecov-cobertura (= 2.1.0)
|
311
|
-
webmock (= 3.
|
333
|
+
webmock (= 3.25.0)
|
312
334
|
yard (= 0.9.37)
|
313
335
|
|
314
336
|
BUNDLED WITH
|
data/LICENSE.txt
CHANGED
data/LICENSES/MIT.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
(The MIT License)
|
2
|
+
|
3
|
+
Copyright (c) 2024-2025 Zerocracy
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the 'Software'), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/REUSE.toml
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
|
4
|
+
version = 1
|
5
|
+
[[annotations]]
|
6
|
+
path = [
|
7
|
+
"**/*.csv",
|
8
|
+
"**/*.fe",
|
9
|
+
"**/*.jpg",
|
10
|
+
"**/*.json",
|
11
|
+
"**/*.liquid",
|
12
|
+
"**/*.md",
|
13
|
+
"**/*.pdf",
|
14
|
+
"**/*.png",
|
15
|
+
"**/*.svg",
|
16
|
+
"**/*.txt",
|
17
|
+
"**/*.vm",
|
18
|
+
"**/.gitignore",
|
19
|
+
"**/CNAME",
|
20
|
+
".gitattributes",
|
21
|
+
".gitignore",
|
22
|
+
".gitleaksignore",
|
23
|
+
".pdd",
|
24
|
+
".xcop",
|
25
|
+
"Gemfile.lock",
|
26
|
+
"README.md",
|
27
|
+
"renovate.json",
|
28
|
+
]
|
29
|
+
precedence = "override"
|
30
|
+
SPDX-FileCopyrightText = "Copyright (c) 2025 Yegor Bugayenko"
|
31
|
+
SPDX-License-Identifier = "MIT"
|
data/Rakefile
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2024 Zerocracy
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
6
|
require 'rubygems'
|
24
7
|
require 'rake'
|
@@ -34,7 +17,7 @@ end
|
|
34
17
|
|
35
18
|
ENV['RACK_ENV'] = 'test'
|
36
19
|
|
37
|
-
task default: %i[clean test rubocop yard
|
20
|
+
task default: %i[clean test rubocop yard]
|
38
21
|
|
39
22
|
require 'rake/testtask'
|
40
23
|
desc 'Run all unit tests'
|
@@ -58,11 +41,3 @@ RuboCop::RakeTask.new(:rubocop) do |task|
|
|
58
41
|
task.fail_on_error = true
|
59
42
|
task.requires << 'rubocop-rspec'
|
60
43
|
end
|
61
|
-
|
62
|
-
task :copyright do
|
63
|
-
sh "grep -q -r '#{Date.today.strftime('%Y')}' \
|
64
|
-
--include '*.rb' \
|
65
|
-
--include '*.txt' \
|
66
|
-
--include 'Rakefile' \
|
67
|
-
."
|
68
|
-
end
|
data/fbe.gemspec
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2024 Zerocracy
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
6
|
require 'English'
|
24
7
|
require_relative 'lib/fbe'
|
@@ -42,7 +25,7 @@ Gem::Specification.new do |s|
|
|
42
25
|
s.add_dependency 'backtrace', '~>0'
|
43
26
|
s.add_dependency 'baza.rb', '~>0'
|
44
27
|
s.add_dependency 'decoor', '~>0'
|
45
|
-
s.add_dependency 'factbase', '
|
28
|
+
s.add_dependency 'factbase', '>=0.7.4'
|
46
29
|
s.add_dependency 'faraday', '~>2'
|
47
30
|
s.add_dependency 'faraday-http-cache', '~>2'
|
48
31
|
s.add_dependency 'faraday-multipart', '~>1'
|
data/lib/fbe/award.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the "Software"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require 'factbase/syntax'
|
26
7
|
require_relative 'fb'
|
@@ -52,7 +33,7 @@ class Fbe::Award
|
|
52
33
|
# @param [String] query The query with the bylaw
|
53
34
|
# @param [String] judge The name of the judge
|
54
35
|
def initialize(query = nil, judge: $judge, global: $global, options: $options, loog: $loog)
|
55
|
-
query = Fbe.pmp(fb: Fbe.fb, global:, options:, loog:).hr.send(judge.
|
36
|
+
query = Fbe.pmp(fb: Fbe.fb, global:, options:, loog:).hr.send(judge.tr('-', '_')) if query.nil?
|
56
37
|
@query = query
|
57
38
|
end
|
58
39
|
|
@@ -60,7 +41,7 @@ class Fbe::Award
|
|
60
41
|
# @param [Hash] vars Hash of variables
|
61
42
|
# @return [Fbe::Award::Bill] The bill
|
62
43
|
def bill(vars = {})
|
63
|
-
term = Factbase::Syntax.new(@query, term: Fbe::Award::BTerm).to_term
|
44
|
+
term = Factbase::Syntax.new(Factbase.new, @query, term: Fbe::Award::BTerm).to_term
|
64
45
|
bill = Bill.new
|
65
46
|
vars.each { |k, v| bill.set(k, v) }
|
66
47
|
term.bill_to(bill)
|
@@ -70,15 +51,16 @@ class Fbe::Award
|
|
70
51
|
# Build a bylaw object from this award query.
|
71
52
|
# @return [Fbe::Award::Bylaw] The bylaw
|
72
53
|
def bylaw
|
73
|
-
term = Factbase::Syntax.new(@query, term: Fbe::Award::PTerm).to_term
|
54
|
+
term = Factbase::Syntax.new(Factbase.new, @query, term: Fbe::Award::PTerm).to_term
|
74
55
|
bylaw = Bylaw.new
|
75
56
|
term.publish_to(bylaw)
|
76
57
|
bylaw
|
77
58
|
end
|
78
59
|
|
79
60
|
# A term for bill.
|
80
|
-
class BTerm
|
81
|
-
def initialize(operator, operands)
|
61
|
+
class BTerm < Factbase::Term
|
62
|
+
def initialize(_fb, operator, operands)
|
63
|
+
super(nil, nil, nil)
|
82
64
|
@op = operator
|
83
65
|
@operands = operands
|
84
66
|
end
|
@@ -87,6 +69,14 @@ class Fbe::Award
|
|
87
69
|
"(#{@op} #{@operands.join(' ')})"
|
88
70
|
end
|
89
71
|
|
72
|
+
def static?
|
73
|
+
true
|
74
|
+
end
|
75
|
+
|
76
|
+
def abstract?
|
77
|
+
false
|
78
|
+
end
|
79
|
+
|
90
80
|
def bill_to(bill)
|
91
81
|
case @op
|
92
82
|
when :award
|
@@ -174,8 +164,9 @@ class Fbe::Award
|
|
174
164
|
end
|
175
165
|
|
176
166
|
# A term for bylaw.
|
177
|
-
class PTerm
|
178
|
-
def initialize(operator, operands)
|
167
|
+
class PTerm < Factbase::Term
|
168
|
+
def initialize(_fb, operator, operands)
|
169
|
+
super(nil, nil, nil)
|
179
170
|
@op = operator
|
180
171
|
@operands = operands
|
181
172
|
end
|
@@ -221,6 +212,14 @@ class Fbe::Award
|
|
221
212
|
end
|
222
213
|
end
|
223
214
|
|
215
|
+
def static?
|
216
|
+
true
|
217
|
+
end
|
218
|
+
|
219
|
+
def abstract?
|
220
|
+
false
|
221
|
+
end
|
222
|
+
|
224
223
|
def publish_to(bylaw)
|
225
224
|
case @op
|
226
225
|
when :award
|
@@ -272,7 +271,7 @@ class Fbe::Award
|
|
272
271
|
9 => '₉'
|
273
272
|
}
|
274
273
|
s.gsub!(/([a-z]+)([0-9])/) { |_| "#{Regexp.last_match[1]}#{subs[Regexp.last_match[2].to_i]}" }
|
275
|
-
"_#{s.
|
274
|
+
"_#{s.tr('_', '-')}_"
|
276
275
|
when Integer, Float
|
277
276
|
"**#{any}**"
|
278
277
|
else
|
@@ -301,7 +300,7 @@ class Fbe::Award
|
|
301
300
|
end
|
302
301
|
|
303
302
|
def points
|
304
|
-
@lines.
|
303
|
+
@lines.sum { |l| l[:v] }.to_f.round.to_i
|
305
304
|
end
|
306
305
|
|
307
306
|
def greeting
|
data/lib/fbe/bylaws.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the "Software"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require 'liquid'
|
26
7
|
require_relative '../fbe'
|
data/lib/fbe/conclude.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the "Software"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require_relative '../fbe'
|
26
7
|
require_relative 'fb'
|
@@ -61,7 +42,7 @@ end
|
|
61
42
|
# new facts, letting the block in the {Fbe::Conclude#draw} deal with them.
|
62
43
|
#
|
63
44
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
64
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
45
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
65
46
|
# License:: MIT
|
66
47
|
class Fbe::Conclude
|
67
48
|
# Ctor.
|
@@ -180,7 +161,7 @@ class Fbe::Conclude
|
|
180
161
|
def fill(fact, prev)
|
181
162
|
@follows.each do |follow|
|
182
163
|
v = prev.send(follow)
|
183
|
-
fact.send("#{follow}=", v)
|
164
|
+
fact.send(:"#{follow}=", v)
|
184
165
|
end
|
185
166
|
r = yield fact, prev
|
186
167
|
return unless r.is_a?(String)
|
data/lib/fbe/copy.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the "Software"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require_relative '../fbe'
|
26
7
|
require_relative 'fb'
|