fbe 0.0.86 → 0.2.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 +7 -21
- 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 +6 -21
- data/.rultor.yml +4 -20
- data/.simplecov +2 -19
- data/.yamllint.yml +2 -19
- data/Gemfile +12 -29
- data/Gemfile.lock +71 -60
- data/LICENSES/MIT.txt +21 -0
- data/REUSE.toml +36 -0
- data/Rakefile +3 -28
- data/fbe.gemspec +3 -20
- data/lib/fbe/award.rb +8 -37
- data/lib/fbe/bylaws.rb +2 -21
- data/lib/fbe/conclude.rb +2 -21
- 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 +2 -21
- data/lib/fbe/if_absent.rb +2 -21
- data/lib/fbe/issue.rb +2 -21
- data/lib/fbe/iterate.rb +3 -22
- data/lib/fbe/just_one.rb +2 -21
- data/lib/fbe/middleware/formatter.rb +2 -21
- data/lib/fbe/middleware/quota.rb +2 -21
- data/lib/fbe/middleware.rb +2 -21
- data/lib/fbe/octo.rb +3 -22
- data/lib/fbe/overwrite.rb +2 -21
- 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 +3 -20
- data/rules/basic.fe +1 -1
- data/test/fbe/middleware/test_formatter.rb +3 -22
- data/test/fbe/middleware/test_quota.rb +2 -22
- data/test/fbe/test_award.rb +2 -22
- data/test/fbe/test_bylaws.rb +2 -22
- data/test/fbe/test_conclude.rb +2 -22
- data/test/fbe/test_copy.rb +2 -22
- data/test/fbe/test_enter.rb +2 -22
- data/test/fbe/test_fb.rb +2 -22
- data/test/fbe/test_github_graph.rb +2 -22
- data/test/fbe/test_if_absent.rb +2 -23
- data/test/fbe/test_issue.rb +2 -22
- data/test/fbe/test_iterate.rb +2 -22
- data/test/fbe/test_just_one.rb +2 -22
- data/test/fbe/test_octo.rb +3 -23
- data/test/fbe/test_overwrite.rb +2 -22
- data/test/fbe/test_pmp.rb +2 -22
- data/test/fbe/test_regularly.rb +2 -22
- data/test/fbe/test_repeatedly.rb +2 -22
- data/test/fbe/test_sec.rb +2 -22
- data/test/fbe/test_unmask_repos.rb +2 -22
- data/test/fbe/test_who.rb +2 -22
- data/test/test__helper.rb +2 -19
- data/test/test_fbe.rb +2 -20
- metadata +8 -8
data/Gemfile.lock
CHANGED
@@ -5,7 +5,7 @@ PATH
|
|
5
5
|
backtrace (~> 0)
|
6
6
|
baza.rb (~> 0)
|
7
7
|
decoor (~> 0)
|
8
|
-
factbase (>= 0.
|
8
|
+
factbase (>= 0.9.1)
|
9
9
|
faraday (~> 2)
|
10
10
|
faraday-http-cache (~> 2)
|
11
11
|
faraday-multipart (~> 1)
|
@@ -22,9 +22,9 @@ PATH
|
|
22
22
|
GEM
|
23
23
|
remote: https://rubygems.org/
|
24
24
|
specs:
|
25
|
-
actionpack (8.0.
|
26
|
-
actionview (= 8.0.
|
27
|
-
activesupport (= 8.0.
|
25
|
+
actionpack (8.0.2)
|
26
|
+
actionview (= 8.0.2)
|
27
|
+
activesupport (= 8.0.2)
|
28
28
|
nokogiri (>= 1.8.5)
|
29
29
|
rack (>= 2.2.4)
|
30
30
|
rack-session (>= 1.0.1)
|
@@ -32,13 +32,13 @@ GEM
|
|
32
32
|
rails-dom-testing (~> 2.2)
|
33
33
|
rails-html-sanitizer (~> 1.6)
|
34
34
|
useragent (~> 0.16)
|
35
|
-
actionview (8.0.
|
36
|
-
activesupport (= 8.0.
|
35
|
+
actionview (8.0.2)
|
36
|
+
activesupport (= 8.0.2)
|
37
37
|
builder (~> 3.1)
|
38
38
|
erubi (~> 1.11)
|
39
39
|
rails-dom-testing (~> 2.2)
|
40
40
|
rails-html-sanitizer (~> 1.6)
|
41
|
-
activesupport (8.0.
|
41
|
+
activesupport (8.0.2)
|
42
42
|
base64
|
43
43
|
benchmark (>= 0.3)
|
44
44
|
bigdecimal
|
@@ -80,7 +80,7 @@ GEM
|
|
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,14 +89,14 @@ GEM
|
|
89
89
|
erubi (1.13.1)
|
90
90
|
ethon (0.16.0)
|
91
91
|
ffi (>= 1.15.0)
|
92
|
-
factbase (0.
|
93
|
-
backtrace (
|
94
|
-
decoor (
|
92
|
+
factbase (0.9.1)
|
93
|
+
backtrace (>= 0.4.0)
|
94
|
+
decoor (>= 0.0.1)
|
95
95
|
json (~> 2.7)
|
96
|
-
loog (
|
96
|
+
loog (>= 0.6.0)
|
97
97
|
nokogiri (~> 1.10)
|
98
|
-
others (
|
99
|
-
tago (
|
98
|
+
others (>= 0.0.3)
|
99
|
+
tago (>= 0.0.2)
|
100
100
|
yaml (~> 0.3)
|
101
101
|
faraday (2.12.2)
|
102
102
|
faraday-net_http (>= 2.0, < 3.5)
|
@@ -117,9 +117,10 @@ GEM
|
|
117
117
|
fiber-storage (1.0.0)
|
118
118
|
gli (2.22.2)
|
119
119
|
ostruct
|
120
|
-
graphql (2.4.
|
120
|
+
graphql (2.4.13)
|
121
121
|
base64
|
122
122
|
fiber-storage
|
123
|
+
logger
|
123
124
|
graphql-client (0.25.0)
|
124
125
|
activesupport (>= 3.0)
|
125
126
|
graphql (>= 1.13.0)
|
@@ -131,14 +132,14 @@ GEM
|
|
131
132
|
pp (>= 0.6.0)
|
132
133
|
rdoc (>= 4.0.0)
|
133
134
|
reline (>= 0.4.2)
|
134
|
-
iri (0.
|
135
|
-
json (2.
|
136
|
-
judges (0.
|
135
|
+
iri (0.10.0)
|
136
|
+
json (2.10.2)
|
137
|
+
judges (0.36.3)
|
137
138
|
backtrace (~> 0)
|
138
139
|
baza.rb (~> 0)
|
139
140
|
concurrent-ruby (~> 1.2)
|
140
141
|
elapsed (~> 0)
|
141
|
-
factbase (>= 0.
|
142
|
+
factbase (>= 0.9.1)
|
142
143
|
gli (~> 2.21)
|
143
144
|
iri (~> 0)
|
144
145
|
loog (~> 0)
|
@@ -148,15 +149,17 @@ GEM
|
|
148
149
|
retries (~> 0)
|
149
150
|
tago (~> 0)
|
150
151
|
timeout (~> 0)
|
152
|
+
total (~> 0)
|
151
153
|
typhoeus (~> 1.3)
|
152
154
|
language_server-protocol (3.17.0.4)
|
155
|
+
lint_roller (1.1.0)
|
153
156
|
liquid (5.5.1)
|
154
|
-
logger (1.6.
|
157
|
+
logger (1.6.6)
|
155
158
|
loofah (2.24.0)
|
156
159
|
crass (~> 1.0.2)
|
157
160
|
nokogiri (>= 1.12.0)
|
158
161
|
loog (0.6.0)
|
159
|
-
minitest (5.25.
|
162
|
+
minitest (5.25.5)
|
160
163
|
minitest-reporters (1.7.1)
|
161
164
|
ansi
|
162
165
|
builder
|
@@ -166,13 +169,13 @@ GEM
|
|
166
169
|
multipart-post (2.4.1)
|
167
170
|
net-http (0.6.0)
|
168
171
|
uri
|
169
|
-
nokogiri (1.18.
|
172
|
+
nokogiri (1.18.3-arm64-darwin)
|
170
173
|
racc (~> 1.4)
|
171
|
-
nokogiri (1.18.
|
174
|
+
nokogiri (1.18.3-x64-mingw-ucrt)
|
172
175
|
racc (~> 1.4)
|
173
|
-
nokogiri (1.18.
|
176
|
+
nokogiri (1.18.3-x86_64-darwin)
|
174
177
|
racc (~> 1.4)
|
175
|
-
nokogiri (1.18.
|
178
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
176
179
|
racc (~> 1.4)
|
177
180
|
obk (0.3.1)
|
178
181
|
octokit (9.2.0)
|
@@ -181,7 +184,7 @@ GEM
|
|
181
184
|
ostruct (0.6.1)
|
182
185
|
others (0.0.3)
|
183
186
|
parallel (1.26.3)
|
184
|
-
parser (3.3.7.
|
187
|
+
parser (3.3.7.1)
|
185
188
|
ast (~> 2.4.1)
|
186
189
|
racc
|
187
190
|
pp (0.6.2)
|
@@ -192,7 +195,7 @@ GEM
|
|
192
195
|
stringio
|
193
196
|
public_suffix (6.0.1)
|
194
197
|
racc (1.8.1)
|
195
|
-
rack (3.1.
|
198
|
+
rack (3.1.12)
|
196
199
|
rack-session (2.1.0)
|
197
200
|
base64 (>= 0.1.0)
|
198
201
|
rack (>= 3.0.0)
|
@@ -207,9 +210,9 @@ GEM
|
|
207
210
|
rails-html-sanitizer (1.6.2)
|
208
211
|
loofah (~> 2.21)
|
209
212
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
210
|
-
railties (8.0.
|
211
|
-
actionpack (= 8.0.
|
212
|
-
activesupport (= 8.0.
|
213
|
+
railties (8.0.2)
|
214
|
+
actionpack (= 8.0.2)
|
215
|
+
activesupport (= 8.0.2)
|
213
216
|
irb (~> 1.13)
|
214
217
|
rackup (>= 1.0.0)
|
215
218
|
rake (>= 12.2)
|
@@ -217,14 +220,14 @@ GEM
|
|
217
220
|
zeitwerk (~> 2.6)
|
218
221
|
rainbow (3.1.1)
|
219
222
|
rake (13.2.1)
|
220
|
-
rdoc (6.
|
223
|
+
rdoc (6.12.0)
|
221
224
|
psych (>= 4.0.0)
|
222
225
|
regexp_parser (2.10.0)
|
223
226
|
reline (0.6.0)
|
224
227
|
io-console (~> 0.5)
|
225
228
|
retries (0.0.5)
|
226
|
-
rexml (3.4.
|
227
|
-
rspec-core (3.13.
|
229
|
+
rexml (3.4.1)
|
230
|
+
rspec-core (3.13.3)
|
228
231
|
rspec-support (~> 3.13.0)
|
229
232
|
rspec-expectations (3.13.3)
|
230
233
|
diff-lcs (>= 1.2.0, < 2.0)
|
@@ -232,7 +235,7 @@ GEM
|
|
232
235
|
rspec-mocks (3.13.2)
|
233
236
|
diff-lcs (>= 1.2.0, < 2.0)
|
234
237
|
rspec-support (~> 3.13.0)
|
235
|
-
rspec-rails (7.1.
|
238
|
+
rspec-rails (7.1.1)
|
236
239
|
actionpack (>= 7.0)
|
237
240
|
activesupport (>= 7.0)
|
238
241
|
railties (>= 7.0)
|
@@ -241,26 +244,33 @@ GEM
|
|
241
244
|
rspec-mocks (~> 3.13)
|
242
245
|
rspec-support (~> 3.13)
|
243
246
|
rspec-support (3.13.2)
|
244
|
-
rubocop (1.
|
247
|
+
rubocop (1.73.2)
|
245
248
|
json (~> 2.3)
|
246
|
-
language_server-protocol (
|
249
|
+
language_server-protocol (~> 3.17.0.2)
|
250
|
+
lint_roller (~> 1.1.0)
|
247
251
|
parallel (~> 1.10)
|
248
252
|
parser (>= 3.3.0.2)
|
249
253
|
rainbow (>= 2.2.2, < 4.0)
|
250
254
|
regexp_parser (>= 2.9.3, < 3.0)
|
251
|
-
rubocop-ast (>= 1.
|
255
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
252
256
|
ruby-progressbar (~> 1.7)
|
253
257
|
unicode-display_width (>= 2.4.0, < 4.0)
|
254
|
-
rubocop-ast (1.38.
|
258
|
+
rubocop-ast (1.38.1)
|
255
259
|
parser (>= 3.3.1.0)
|
256
|
-
rubocop-minitest (0.
|
257
|
-
|
258
|
-
rubocop
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
rubocop (
|
260
|
+
rubocop-minitest (0.37.1)
|
261
|
+
lint_roller (~> 1.1)
|
262
|
+
rubocop (>= 1.72.1, < 2.0)
|
263
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
264
|
+
rubocop-performance (1.24.0)
|
265
|
+
lint_roller (~> 1.1)
|
266
|
+
rubocop (>= 1.72.1, < 2.0)
|
267
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
268
|
+
rubocop-rake (0.7.1)
|
269
|
+
lint_roller (~> 1.1)
|
270
|
+
rubocop (>= 1.72.1)
|
271
|
+
rubocop-rspec (3.5.0)
|
272
|
+
lint_roller (~> 1.1)
|
273
|
+
rubocop (~> 1.72, >= 1.72.1)
|
264
274
|
ruby-progressbar (1.13.0)
|
265
275
|
sawyer (0.9.2)
|
266
276
|
addressable (>= 2.3.5)
|
@@ -275,10 +285,11 @@ GEM
|
|
275
285
|
simplecov (~> 0.19)
|
276
286
|
simplecov-html (0.13.1)
|
277
287
|
simplecov_json_formatter (0.1.4)
|
278
|
-
stringio (3.1.
|
288
|
+
stringio (3.1.5)
|
279
289
|
tago (0.0.2)
|
280
290
|
thor (1.3.2)
|
281
291
|
timeout (0.4.3)
|
292
|
+
total (0.4.1)
|
282
293
|
typhoeus (1.4.1)
|
283
294
|
ethon (>= 0.9.0)
|
284
295
|
tzinfo (2.0.6)
|
@@ -286,18 +297,18 @@ GEM
|
|
286
297
|
unicode-display_width (3.1.4)
|
287
298
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
288
299
|
unicode-emoji (4.0.4)
|
289
|
-
uri (1.0.
|
300
|
+
uri (1.0.3)
|
290
301
|
useragent (0.16.11)
|
291
302
|
verbose (0.0.2)
|
292
303
|
loog (~> 0.2)
|
293
304
|
tago (~> 0.0)
|
294
|
-
webmock (3.
|
305
|
+
webmock (3.25.1)
|
295
306
|
addressable (>= 2.8.0)
|
296
307
|
crack (>= 0.3.2)
|
297
308
|
hashdiff (>= 0.4.0, < 2.0.0)
|
298
309
|
yaml (0.4.0)
|
299
310
|
yard (0.9.37)
|
300
|
-
zeitwerk (2.7.
|
311
|
+
zeitwerk (2.7.2)
|
301
312
|
|
302
313
|
PLATFORMS
|
303
314
|
arm64-darwin-22
|
@@ -310,18 +321,18 @@ PLATFORMS
|
|
310
321
|
|
311
322
|
DEPENDENCIES
|
312
323
|
fbe!
|
313
|
-
|
314
|
-
minitest (
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
rubocop (
|
319
|
-
rubocop-
|
320
|
-
rubocop-
|
321
|
-
rubocop-rspec (
|
324
|
+
minitest (= 5.25.5)
|
325
|
+
minitest-reporters (>= 1.7)
|
326
|
+
rake (>= 13)
|
327
|
+
rspec-rails (> 0)
|
328
|
+
rubocop (= 1.73.2)
|
329
|
+
rubocop-minitest (> 0)
|
330
|
+
rubocop-performance (> 0)
|
331
|
+
rubocop-rake (> 0)
|
332
|
+
rubocop-rspec (> 0)
|
322
333
|
simplecov (= 0.22.0)
|
323
334
|
simplecov-cobertura (= 2.1.0)
|
324
|
-
webmock (= 3.
|
335
|
+
webmock (= 3.25.1)
|
325
336
|
yard (= 0.9.37)
|
326
337
|
|
327
338
|
BUNDLED WITH
|
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,36 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
|
4
|
+
version = 1
|
5
|
+
[[annotations]]
|
6
|
+
path = [
|
7
|
+
"**.json",
|
8
|
+
"**.md",
|
9
|
+
"**.txt",
|
10
|
+
"**/*.csv",
|
11
|
+
"**/*.fe",
|
12
|
+
"**/*.jpg",
|
13
|
+
"**/*.json",
|
14
|
+
"**/*.liquid",
|
15
|
+
"**/*.md",
|
16
|
+
"**/*.pdf",
|
17
|
+
"**/*.png",
|
18
|
+
"**/*.svg",
|
19
|
+
"**/*.txt",
|
20
|
+
"**/*.vm",
|
21
|
+
"**/.DS_Store",
|
22
|
+
"**/.gitignore",
|
23
|
+
"**/.pdd",
|
24
|
+
"**/CNAME",
|
25
|
+
"**/Gemfile.lock",
|
26
|
+
".DS_Store",
|
27
|
+
".gitattributes",
|
28
|
+
".gitignore",
|
29
|
+
".pdd",
|
30
|
+
"Gemfile.lock",
|
31
|
+
"README.md",
|
32
|
+
"renovate.json",
|
33
|
+
]
|
34
|
+
precedence = "override"
|
35
|
+
SPDX-FileCopyrightText = "Copyright (c) 2025 Yegor Bugayenko"
|
36
|
+
SPDX-License-Identifier = "MIT"
|
data/Rakefile
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
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.
|
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-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.
|
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', '>=0.
|
28
|
+
s.add_dependency 'factbase', '>=0.9.1'
|
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-2025 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'
|
@@ -60,7 +41,8 @@ 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(
|
44
|
+
term = Factbase::Syntax.new(@query).to_term
|
45
|
+
term.redress!(Fbe::Award::BTerm)
|
64
46
|
bill = Bill.new
|
65
47
|
vars.each { |k, v| bill.set(k, v) }
|
66
48
|
term.bill_to(bill)
|
@@ -70,20 +52,15 @@ class Fbe::Award
|
|
70
52
|
# Build a bylaw object from this award query.
|
71
53
|
# @return [Fbe::Award::Bylaw] The bylaw
|
72
54
|
def bylaw
|
73
|
-
term = Factbase::Syntax.new(
|
55
|
+
term = Factbase::Syntax.new(@query).to_term
|
56
|
+
term.redress!(Fbe::Award::PTerm)
|
74
57
|
bylaw = Bylaw.new
|
75
58
|
term.publish_to(bylaw)
|
76
59
|
bylaw
|
77
60
|
end
|
78
61
|
|
79
62
|
# A term for bill.
|
80
|
-
|
81
|
-
def initialize(_fb, operator, operands)
|
82
|
-
super(nil, nil, nil)
|
83
|
-
@op = operator
|
84
|
-
@operands = operands
|
85
|
-
end
|
86
|
-
|
63
|
+
module BTerm
|
87
64
|
def to_s
|
88
65
|
"(#{@op} #{@operands.join(' ')})"
|
89
66
|
end
|
@@ -183,13 +160,7 @@ class Fbe::Award
|
|
183
160
|
end
|
184
161
|
|
185
162
|
# A term for bylaw.
|
186
|
-
|
187
|
-
def initialize(_fb, operator, operands)
|
188
|
-
super(nil, nil, nil)
|
189
|
-
@op = operator
|
190
|
-
@operands = operands
|
191
|
-
end
|
192
|
-
|
163
|
+
module PTerm
|
193
164
|
def to_s
|
194
165
|
case @op
|
195
166
|
when :total
|
data/lib/fbe/bylaws.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024-2025 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-2025 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'
|
data/lib/fbe/copy.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024-2025 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'
|
data/lib/fbe/enter.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024-2025 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 'baza-rb'
|
26
7
|
require_relative '../fbe'
|
data/lib/fbe/fb.rb
CHANGED
@@ -1,31 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024-2025 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 'loog'
|
26
7
|
require 'judges'
|
27
8
|
require 'factbase'
|
28
|
-
require 'factbase/
|
9
|
+
require 'factbase/logged'
|
29
10
|
require 'factbase/pre'
|
30
11
|
require 'factbase/rules'
|
31
12
|
require_relative '../fbe'
|
@@ -58,6 +39,6 @@ def Fbe.fb(fb: $fb, global: $global, options: $options, loog: $loog)
|
|
58
39
|
f._version = "#{Factbase::VERSION}/#{Judges::VERSION}/#{options.action_version}"
|
59
40
|
f._job = options.job_id unless options.job_id.nil?
|
60
41
|
end
|
61
|
-
Factbase::
|
42
|
+
Factbase::Logged.new(fbe, loog)
|
62
43
|
end
|
63
44
|
end
|