zold 0.31.9 → 0.32.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/typos.toml +11 -0
- data/.github/workflows/actionlint.yml +5 -21
- data/.github/workflows/bashate.yml +25 -0
- data/.github/workflows/codecov.yml +11 -24
- data/.github/workflows/copyrights.yml +6 -21
- data/.github/workflows/hadolint.yml +14 -0
- data/.github/workflows/markdown-lint.yml +19 -0
- data/.github/workflows/pdd.yml +5 -20
- data/.github/workflows/rake.yml +8 -22
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/shellcheck.yml +19 -0
- data/.github/workflows/typos.yml +21 -0
- data/.github/workflows/xcop.yml +5 -20
- data/.github/workflows/yamllint.yml +5 -20
- data/.gitignore +9 -6
- data/.rubocop.yml +16 -20
- data/.ruby-version +1 -1
- data/.rultor.yml +6 -22
- data/Dockerfile +11 -27
- data/Gemfile +21 -33
- data/Gemfile.lock +185 -130
- data/Guardfile +0 -0
- data/INSTALL.md +80 -59
- data/LICENSE.txt +1 -1
- data/LICENSES/MIT.txt +21 -0
- data/README.md +183 -154
- data/REUSE.toml +40 -0
- data/Rakefile +4 -38
- data/bin/zold +7 -37
- data/cucumber.yml +2 -19
- data/deploy.sh +4 -22
- data/features/cli.feature +2 -0
- data/features/gem_package.feature +2 -0
- data/features/step_definitions/steps.rb +2 -19
- data/features/support/env.rb +2 -19
- data/fixtures/merge/asserts.rb +3 -19
- data/fixtures/merge/into_no_wallet/assert.rb +2 -19
- data/fixtures/merge/legacy_negatives_stay/assert.rb +2 -19
- data/fixtures/merge/legacy_negatives_stay/copies/0123456789abcdef/scores.zc +1 -1
- data/fixtures/merge/missed_wallets/0123456789abcdef.z +0 -2
- data/fixtures/merge/missed_wallets/assert.rb +2 -19
- data/fixtures/merge/missed_wallets/copies/0123456789abcdef/scores.zc +1 -1
- data/fixtures/merge/negative_overwriting/assert.rb +2 -19
- data/fixtures/merge/negatives_in_between/0123456789abcdef.z +0 -1
- data/fixtures/merge/negatives_in_between/assert.rb +2 -19
- data/fixtures/merge/negatives_in_between/copies/0123456789abcdef/2.zc +0 -1
- data/fixtures/merge/negatives_in_between/opts +1 -1
- data/fixtures/merge/random_expenses/assert.rb +2 -19
- data/fixtures/merge/random_expenses/opts +1 -1
- data/fixtures/merge/simple_case/assert.rb +2 -19
- data/fixtures/merge/simple_case/opts +1 -1
- data/fixtures/merge/unconfirmed_income/assert.rb +2 -19
- data/fixtures/scripts/_head.sh +16 -33
- data/fixtures/scripts/calculate-scores.sh +3 -20
- data/fixtures/scripts/distribute-wallet.sh +26 -43
- data/fixtures/scripts/print-helps.sh +5 -23
- data/fixtures/scripts/pull-on-start.sh +12 -29
- data/fixtures/scripts/push-and-pull.sh +10 -27
- data/fixtures/scripts/redeploy-on-upgrade.sh +18 -34
- data/fixtures/scripts/spread-wallets.sh +24 -40
- data/lib/zold/age.rb +3 -20
- data/lib/zold/amount.rb +3 -20
- data/lib/zold/cached_wallets.rb +3 -20
- data/lib/zold/commands/alias.rb +4 -21
- data/lib/zold/commands/args.rb +4 -21
- data/lib/zold/commands/calculate.rb +5 -22
- data/lib/zold/commands/clean.rb +6 -23
- data/lib/zold/commands/create.rb +5 -22
- data/lib/zold/commands/diff.rb +5 -22
- data/lib/zold/commands/fetch.rb +6 -23
- data/lib/zold/commands/invoice.rb +5 -22
- data/lib/zold/commands/list.rb +5 -22
- data/lib/zold/commands/merge.rb +7 -24
- data/lib/zold/commands/next.rb +5 -22
- data/lib/zold/commands/node.rb +4 -21
- data/lib/zold/commands/pay.rb +6 -23
- data/lib/zold/commands/propagate.rb +5 -22
- data/lib/zold/commands/pull.rb +5 -22
- data/lib/zold/commands/push.rb +5 -22
- data/lib/zold/commands/remote.rb +7 -24
- data/lib/zold/commands/remove.rb +5 -22
- data/lib/zold/commands/routines/audit.rb +4 -21
- data/lib/zold/commands/routines/gc.rb +6 -23
- data/lib/zold/commands/routines/reconcile.rb +5 -22
- data/lib/zold/commands/routines/reconnect.rb +4 -21
- data/lib/zold/commands/routines/retire.rb +4 -21
- data/lib/zold/commands/routines/spread.rb +5 -22
- data/lib/zold/commands/routines.rb +3 -20
- data/lib/zold/commands/show.rb +5 -22
- data/lib/zold/commands/taxes.rb +5 -22
- data/lib/zold/commands/thread_badge.rb +3 -20
- data/lib/zold/copies.rb +6 -25
- data/lib/zold/dir_items.rb +3 -20
- data/lib/zold/endless.rb +5 -22
- data/lib/zold/gem.rb +3 -20
- data/lib/zold/hands.rb +6 -23
- data/lib/zold/head.rb +4 -21
- data/lib/zold/hexnum.rb +3 -20
- data/lib/zold/http.rb +3 -20
- data/lib/zold/hungry_wallets.rb +6 -23
- data/lib/zold/id.rb +3 -20
- data/lib/zold/json_page.rb +5 -22
- data/lib/zold/key.rb +3 -20
- data/lib/zold/metronome.rb +5 -22
- data/lib/zold/node/async_entrance.rb +6 -23
- data/lib/zold/node/entrance.rb +7 -24
- data/lib/zold/node/farm.rb +5 -22
- data/lib/zold/node/farmers.rb +15 -32
- data/lib/zold/node/front.rb +6 -23
- data/lib/zold/node/journaled_pipeline.rb +8 -25
- data/lib/zold/node/nodup_entrance.rb +6 -23
- data/lib/zold/node/nospam_entrance.rb +6 -23
- data/lib/zold/node/pipeline.rb +6 -23
- data/lib/zold/node/safe_entrance.rb +4 -22
- data/lib/zold/node/soft_error.rb +3 -20
- data/lib/zold/node/spread_entrance.rb +5 -22
- data/lib/zold/node/sync_entrance.rb +5 -22
- data/lib/zold/node/trace.rb +3 -20
- data/lib/zold/patch.rb +6 -23
- data/lib/zold/prefixes.rb +3 -20
- data/lib/zold/remotes.rb +5 -22
- data/lib/zold/signature.rb +3 -20
- data/lib/zold/size.rb +3 -20
- data/lib/zold/sync_wallets.rb +5 -22
- data/lib/zold/tax.rb +4 -21
- data/lib/zold/thread_pool.rb +4 -21
- data/lib/zold/tree_wallets.rb +3 -20
- data/lib/zold/txn.rb +4 -21
- data/lib/zold/txns.rb +4 -21
- data/lib/zold/upgrades.rb +4 -21
- data/lib/zold/verbose_thread.rb +5 -22
- data/lib/zold/version.rb +4 -21
- data/lib/zold/version_file.rb +4 -21
- data/lib/zold/wallet.rb +6 -23
- data/lib/zold/wallets.rb +5 -23
- data/lib/zold.rb +3 -21
- data/resources/banned-wallets.log +6 -6
- data/test/commands/routines/test_audit.rb +3 -21
- data/test/commands/routines/test_gc.rb +3 -21
- data/test/commands/routines/test_reconcile.rb +3 -21
- data/test/commands/routines/test_reconnect.rb +3 -21
- data/test/commands/routines/test_retire.rb +3 -21
- data/test/commands/test_alias.rb +2 -20
- data/test/commands/test_calculate.rb +5 -23
- data/test/commands/test_clean.rb +5 -23
- data/test/commands/test_create.rb +6 -24
- data/test/commands/test_diff.rb +4 -22
- data/test/commands/test_fetch.rb +3 -21
- data/test/commands/test_invoice.rb +3 -21
- data/test/commands/test_list.rb +3 -21
- data/test/commands/test_merge.rb +12 -35
- data/test/commands/test_node.rb +3 -21
- data/test/commands/test_pay.rb +5 -23
- data/test/commands/test_propagate.rb +6 -24
- data/test/commands/test_pull.rb +4 -22
- data/test/commands/test_push.rb +3 -21
- data/test/commands/test_remote.rb +10 -28
- data/test/commands/test_remove.rb +7 -25
- data/test/commands/test_show.rb +3 -21
- data/test/commands/test_taxes.rb +5 -23
- data/test/fake_home.rb +5 -22
- data/test/node/fake_entrance.rb +3 -20
- data/test/node/fake_node.rb +5 -22
- data/test/node/test_async_entrance.rb +3 -21
- data/test/node/test_entrance.rb +7 -25
- data/test/node/test_farm.rb +15 -33
- data/test/node/test_farmers.rb +3 -21
- data/test/node/test_front.rb +22 -42
- data/test/node/test_nodup_entrance.rb +4 -22
- data/test/node/test_nospam_entrance.rb +6 -24
- data/test/node/test_safe_entrance.rb +3 -21
- data/test/node/test_spread_entrance.rb +4 -22
- data/test/node/test_sync_entrance.rb +4 -22
- data/test/node/test_trace.rb +4 -22
- data/test/test__helper.rb +32 -31
- data/test/test_age.rb +5 -23
- data/test/test_amount.rb +15 -34
- data/test/test_cached_wallets.rb +3 -21
- data/test/test_copies.rb +10 -28
- data/test/test_dir_items.rb +4 -22
- data/test/test_gem.rb +3 -21
- data/test/test_hands.rb +3 -21
- data/test/test_hexnum.rb +3 -21
- data/test/test_http.rb +9 -27
- data/test/test_hungry_wallets.rb +6 -24
- data/test/test_id.rb +10 -28
- data/test/test_json_page.rb +3 -21
- data/test/test_key.rb +5 -23
- data/test/test_metronome.rb +6 -24
- data/test/test_patch.rb +10 -28
- data/test/test_prefixes.rb +3 -21
- data/test/test_remotes.rb +17 -35
- data/test/test_signature.rb +3 -21
- data/test/test_size.rb +3 -21
- data/test/test_sync_wallets.rb +3 -21
- data/test/test_tax.rb +6 -24
- data/test/test_thread_pool.rb +6 -24
- data/test/test_tree_wallets.rb +4 -22
- data/test/test_txn.rb +3 -21
- data/test/test_upgrades.rb +3 -21
- data/test/test_verbose_thread.rb +6 -24
- data/test/test_version.rb +2 -20
- data/test/test_wallet.rb +15 -33
- data/test/test_wallets.rb +4 -22
- data/test/test_zold.rb +7 -25
- data/test/upgrades/test_delete_banned_wallets.rb +4 -22
- data/test/upgrades/test_protocol_up.rb +3 -21
- data/upgrades/2.rb +3 -20
- data/upgrades/delete_banned_wallets.rb +3 -20
- data/upgrades/move_wallets_into_tree.rb +3 -20
- data/upgrades/protocol_up.rb +3 -20
- data/upgrades/rename_foreign_wallets.rb +3 -20
- data/views/journal.haml +25 -0
- data/views/layout.haml +25 -0
- data/views/wallet.haml +25 -0
- data/zold.gemspec +5 -21
- metadata +33 -15
- data/.simplecov +0 -36
- data/lib/zold/log.rb +0 -139
- data/test/test_log.rb +0 -49
data/Gemfile
CHANGED
|
@@ -1,41 +1,29 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (c) 2018-
|
|
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) 2018-2025 Zerocracy
|
|
4
|
+
# SPDX-License-Identifier: MIT
|
|
22
5
|
|
|
23
6
|
source 'https://rubygems.org'
|
|
24
7
|
gemspec
|
|
25
8
|
|
|
26
|
-
gem '
|
|
27
|
-
gem '
|
|
28
|
-
gem 'guard
|
|
29
|
-
gem 'minitest', '
|
|
30
|
-
gem 'minitest
|
|
31
|
-
gem 'minitest-hooks', '1.5
|
|
32
|
-
gem 'minitest-
|
|
33
|
-
gem '
|
|
9
|
+
gem 'csv', '~>3.3', require: false
|
|
10
|
+
gem 'cucumber', '~>9.2', require: false
|
|
11
|
+
gem 'guard', '~>2.19', require: false
|
|
12
|
+
gem 'guard-minitest', '~>2.4', require: false
|
|
13
|
+
gem 'minitest', '~>6.0', require: false
|
|
14
|
+
gem 'minitest-hooks', '~>1.5', require: false
|
|
15
|
+
gem 'minitest-mock', '~>5.27', require: false
|
|
16
|
+
gem 'minitest-reporters', '~>1.7', require: false
|
|
17
|
+
gem 'rake', '~>13.2', require: false
|
|
34
18
|
gem 'random-port', '~>0', require: false
|
|
35
|
-
gem 'rspec-rails', '6.1
|
|
36
|
-
gem 'rubocop', '1.65
|
|
37
|
-
gem 'rubocop-
|
|
38
|
-
gem '
|
|
39
|
-
gem '
|
|
19
|
+
gem 'rspec-rails', '~>6.1', require: false
|
|
20
|
+
gem 'rubocop', '~>1.65', require: false
|
|
21
|
+
gem 'rubocop-minitest', '>0', require: false
|
|
22
|
+
gem 'rubocop-performance', '>0', require: false
|
|
23
|
+
gem 'rubocop-rake', '>0', require: false
|
|
24
|
+
gem 'rubocop-rspec', '~>3.0', require: false
|
|
25
|
+
gem 'simplecov', '~>0.22', require: false
|
|
26
|
+
gem 'simplecov-cobertura', '~>3.0', require: false
|
|
27
|
+
gem 'webmock', '~>3.23', require: false
|
|
40
28
|
gem 'xcop', '>=0.6', require: false
|
|
41
|
-
gem 'yard', '0.9
|
|
29
|
+
gem 'yard', '~>0.9', require: false
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
zold (0.
|
|
4
|
+
zold (0.32.0)
|
|
5
5
|
backtrace (~> 0.3)
|
|
6
6
|
concurrent-ruby (~> 1.1)
|
|
7
7
|
diffy (~> 3.3)
|
|
@@ -9,6 +9,7 @@ PATH
|
|
|
9
9
|
get_process_mem (~> 0.2)
|
|
10
10
|
haml (~> 5.0)
|
|
11
11
|
json (~> 2.2)
|
|
12
|
+
loog (> 0)
|
|
12
13
|
memory_profiler (~> 1.0)
|
|
13
14
|
mimic (~> 0.4)
|
|
14
15
|
openssl (>= 1.0)
|
|
@@ -23,53 +24,57 @@ PATH
|
|
|
23
24
|
typhoeus (~> 1.3)
|
|
24
25
|
usagewatch_ext (~> 0.2)
|
|
25
26
|
zache (~> 0.12)
|
|
26
|
-
zold-score (
|
|
27
|
+
zold-score (> 0)
|
|
27
28
|
|
|
28
29
|
GEM
|
|
29
30
|
remote: https://rubygems.org/
|
|
30
31
|
specs:
|
|
31
|
-
actionpack (
|
|
32
|
-
actionview (=
|
|
33
|
-
activesupport (=
|
|
32
|
+
actionpack (8.1.1)
|
|
33
|
+
actionview (= 8.1.1)
|
|
34
|
+
activesupport (= 8.1.1)
|
|
34
35
|
nokogiri (>= 1.8.5)
|
|
35
|
-
racc
|
|
36
36
|
rack (>= 2.2.4)
|
|
37
37
|
rack-session (>= 1.0.1)
|
|
38
38
|
rack-test (>= 0.6.3)
|
|
39
39
|
rails-dom-testing (~> 2.2)
|
|
40
40
|
rails-html-sanitizer (~> 1.6)
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
useragent (~> 0.16)
|
|
42
|
+
actionview (8.1.1)
|
|
43
|
+
activesupport (= 8.1.1)
|
|
43
44
|
builder (~> 3.1)
|
|
44
45
|
erubi (~> 1.11)
|
|
45
46
|
rails-dom-testing (~> 2.2)
|
|
46
47
|
rails-html-sanitizer (~> 1.6)
|
|
47
|
-
activesupport (
|
|
48
|
+
activesupport (8.1.1)
|
|
48
49
|
base64
|
|
49
50
|
bigdecimal
|
|
50
|
-
concurrent-ruby (~> 1.0, >= 1.
|
|
51
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
51
52
|
connection_pool (>= 2.2.5)
|
|
52
53
|
drb
|
|
53
54
|
i18n (>= 1.6, < 2)
|
|
55
|
+
json
|
|
56
|
+
logger (>= 1.4.2)
|
|
54
57
|
minitest (>= 5.1)
|
|
55
|
-
|
|
56
|
-
tzinfo (~> 2.0)
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
securerandom (>= 0.3)
|
|
59
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
60
|
+
uri (>= 0.13.1)
|
|
61
|
+
addressable (2.8.8)
|
|
62
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
59
63
|
ansi (1.5.0)
|
|
60
|
-
ast (2.4.
|
|
61
|
-
backtrace (0.4.
|
|
62
|
-
base64 (0.
|
|
63
|
-
bigdecimal (
|
|
64
|
+
ast (2.4.3)
|
|
65
|
+
backtrace (0.4.1)
|
|
66
|
+
base64 (0.3.0)
|
|
67
|
+
bigdecimal (4.0.1)
|
|
64
68
|
builder (3.3.0)
|
|
65
69
|
coderay (1.1.3)
|
|
66
|
-
concurrent-ruby (1.3.
|
|
67
|
-
connection_pool (
|
|
68
|
-
crack (1.0.
|
|
70
|
+
concurrent-ruby (1.3.6)
|
|
71
|
+
connection_pool (3.0.2)
|
|
72
|
+
crack (1.0.1)
|
|
69
73
|
bigdecimal
|
|
70
74
|
rexml
|
|
71
75
|
crass (1.0.6)
|
|
72
|
-
|
|
76
|
+
csv (3.3.5)
|
|
77
|
+
cucumber (9.2.1)
|
|
73
78
|
builder (~> 3.2)
|
|
74
79
|
cucumber-ci-environment (> 9, < 11)
|
|
75
80
|
cucumber-core (> 13, < 14)
|
|
@@ -82,7 +87,7 @@ GEM
|
|
|
82
87
|
multi_test (~> 1.1)
|
|
83
88
|
sys-uname (~> 1.2)
|
|
84
89
|
cucumber-ci-environment (10.0.1)
|
|
85
|
-
cucumber-core (13.0.
|
|
90
|
+
cucumber-core (13.0.3)
|
|
86
91
|
cucumber-gherkin (>= 27, < 28)
|
|
87
92
|
cucumber-messages (>= 20, < 23)
|
|
88
93
|
cucumber-tag-expressions (> 5, < 7)
|
|
@@ -90,32 +95,37 @@ GEM
|
|
|
90
95
|
bigdecimal
|
|
91
96
|
cucumber-gherkin (27.0.0)
|
|
92
97
|
cucumber-messages (>= 19.1.4, < 23)
|
|
93
|
-
cucumber-html-formatter (21.
|
|
94
|
-
cucumber-messages (> 19, <
|
|
98
|
+
cucumber-html-formatter (21.15.1)
|
|
99
|
+
cucumber-messages (> 19, < 28)
|
|
95
100
|
cucumber-messages (22.0.0)
|
|
96
|
-
cucumber-tag-expressions (6.1.
|
|
101
|
+
cucumber-tag-expressions (6.1.2)
|
|
97
102
|
daemons (1.4.1)
|
|
98
|
-
|
|
103
|
+
date (3.5.1)
|
|
104
|
+
diff-lcs (1.6.2)
|
|
99
105
|
differ (0.1.2)
|
|
100
|
-
diffy (3.4.
|
|
101
|
-
docile (1.4.
|
|
102
|
-
drb (2.2.
|
|
103
|
-
|
|
104
|
-
|
|
106
|
+
diffy (3.4.4)
|
|
107
|
+
docile (1.4.1)
|
|
108
|
+
drb (2.2.3)
|
|
109
|
+
erb (6.0.1)
|
|
110
|
+
erubi (1.13.1)
|
|
111
|
+
ethon (0.15.0)
|
|
105
112
|
ffi (>= 1.15.0)
|
|
106
113
|
eventmachine (1.2.7)
|
|
107
|
-
ffi (1.17.
|
|
108
|
-
ffi (1.17.
|
|
109
|
-
formatador (1.
|
|
114
|
+
ffi (1.17.2-arm64-darwin)
|
|
115
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
|
116
|
+
formatador (1.2.3)
|
|
117
|
+
reline
|
|
110
118
|
futex (0.8.6)
|
|
111
119
|
get_process_mem (0.2.7)
|
|
112
120
|
ffi (~> 1.0)
|
|
113
|
-
guard (2.
|
|
121
|
+
guard (2.19.1)
|
|
114
122
|
formatador (>= 0.2.4)
|
|
115
123
|
listen (>= 2.7, < 4.0)
|
|
124
|
+
logger (~> 1.6)
|
|
116
125
|
lumberjack (>= 1.0.12, < 2.0)
|
|
117
126
|
nenv (~> 0.1)
|
|
118
127
|
notiffany (~> 0.0)
|
|
128
|
+
ostruct (~> 0.6)
|
|
119
129
|
pry (>= 0.13.0)
|
|
120
130
|
shellany (~> 0.0)
|
|
121
131
|
thor (>= 0.18.1)
|
|
@@ -126,23 +136,29 @@ GEM
|
|
|
126
136
|
haml (5.2.2)
|
|
127
137
|
temple (>= 0.8.0)
|
|
128
138
|
tilt
|
|
129
|
-
hashdiff (1.1
|
|
130
|
-
i18n (1.14.
|
|
139
|
+
hashdiff (1.2.1)
|
|
140
|
+
i18n (1.14.8)
|
|
131
141
|
concurrent-ruby (~> 1.0)
|
|
132
|
-
io-console (0.
|
|
133
|
-
irb (1.
|
|
142
|
+
io-console (0.8.2)
|
|
143
|
+
irb (1.16.0)
|
|
144
|
+
pp (>= 0.6.0)
|
|
134
145
|
rdoc (>= 4.0.0)
|
|
135
146
|
reline (>= 0.4.2)
|
|
136
|
-
json (2.
|
|
137
|
-
language_server-protocol (3.17.0.
|
|
147
|
+
json (2.18.0)
|
|
148
|
+
language_server-protocol (3.17.0.5)
|
|
149
|
+
lint_roller (1.1.0)
|
|
138
150
|
listen (3.9.0)
|
|
139
151
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
140
152
|
rb-inotify (~> 0.9, >= 0.9.10)
|
|
141
|
-
|
|
153
|
+
logger (1.7.0)
|
|
154
|
+
loofah (2.25.0)
|
|
142
155
|
crass (~> 1.0.2)
|
|
143
156
|
nokogiri (>= 1.12.0)
|
|
144
|
-
|
|
145
|
-
|
|
157
|
+
loog (0.6.1)
|
|
158
|
+
logger (~> 1.0)
|
|
159
|
+
lumberjack (1.4.2)
|
|
160
|
+
memoist3 (1.0.0)
|
|
161
|
+
memory_profiler (1.1.0)
|
|
146
162
|
method_source (1.1.0)
|
|
147
163
|
mimic (0.4.4)
|
|
148
164
|
json
|
|
@@ -151,121 +167,146 @@ GEM
|
|
|
151
167
|
sinatra
|
|
152
168
|
thin
|
|
153
169
|
mini_mime (1.1.5)
|
|
154
|
-
minitest (
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
minitest-hooks (1.5.1)
|
|
170
|
+
minitest (6.0.0)
|
|
171
|
+
prism (~> 1.5)
|
|
172
|
+
minitest-hooks (1.5.3)
|
|
158
173
|
minitest (> 5.3)
|
|
174
|
+
minitest-mock (5.27.0)
|
|
159
175
|
minitest-reporters (1.7.1)
|
|
160
176
|
ansi
|
|
161
177
|
builder
|
|
162
178
|
minitest (>= 5.0)
|
|
163
179
|
ruby-progressbar
|
|
164
180
|
multi_test (1.1.0)
|
|
165
|
-
mustermann (3.0.
|
|
181
|
+
mustermann (3.0.4)
|
|
166
182
|
ruby2_keywords (~> 0.0.1)
|
|
167
|
-
mutex_m (0.2.0)
|
|
168
183
|
nenv (0.3.0)
|
|
169
|
-
nokogiri (1.
|
|
184
|
+
nokogiri (1.18.10-arm64-darwin)
|
|
170
185
|
racc (~> 1.4)
|
|
171
|
-
nokogiri (1.
|
|
186
|
+
nokogiri (1.18.10-x86_64-linux-gnu)
|
|
172
187
|
racc (~> 1.4)
|
|
173
188
|
notiffany (0.1.3)
|
|
174
189
|
nenv (~> 0.1)
|
|
175
190
|
shellany (~> 0.0)
|
|
176
|
-
openssl (3.2
|
|
177
|
-
|
|
178
|
-
|
|
191
|
+
openssl (3.3.2)
|
|
192
|
+
ostruct (0.6.3)
|
|
193
|
+
parallel (1.27.0)
|
|
194
|
+
parser (3.3.10.0)
|
|
179
195
|
ast (~> 2.4.1)
|
|
180
196
|
racc
|
|
181
197
|
plist (3.1.0)
|
|
182
|
-
|
|
198
|
+
pp (0.6.3)
|
|
199
|
+
prettyprint
|
|
200
|
+
prettyprint (0.2.0)
|
|
201
|
+
prism (1.7.0)
|
|
202
|
+
pry (0.15.2)
|
|
183
203
|
coderay (~> 1.1)
|
|
184
204
|
method_source (~> 1.0)
|
|
185
|
-
psych (5.1
|
|
205
|
+
psych (5.3.1)
|
|
206
|
+
date
|
|
186
207
|
stringio
|
|
187
|
-
public_suffix (
|
|
188
|
-
racc (1.8.
|
|
189
|
-
rack (2.2.
|
|
208
|
+
public_suffix (7.0.0)
|
|
209
|
+
racc (1.8.1)
|
|
210
|
+
rack (2.2.21)
|
|
190
211
|
rack-protection (3.2.0)
|
|
191
212
|
base64 (>= 0.1.0)
|
|
192
213
|
rack (~> 2.2, >= 2.2.4)
|
|
193
214
|
rack-session (1.0.2)
|
|
194
215
|
rack (< 3)
|
|
195
|
-
rack-test (2.
|
|
216
|
+
rack-test (2.2.0)
|
|
196
217
|
rack (>= 1.3)
|
|
197
|
-
rackup (1.0.
|
|
218
|
+
rackup (1.0.1)
|
|
198
219
|
rack (< 3)
|
|
199
220
|
webrick
|
|
200
|
-
rails-dom-testing (2.
|
|
221
|
+
rails-dom-testing (2.3.0)
|
|
201
222
|
activesupport (>= 5.0.0)
|
|
202
223
|
minitest
|
|
203
224
|
nokogiri (>= 1.6)
|
|
204
|
-
rails-html-sanitizer (1.6.
|
|
225
|
+
rails-html-sanitizer (1.6.2)
|
|
205
226
|
loofah (~> 2.21)
|
|
206
|
-
nokogiri (
|
|
207
|
-
railties (
|
|
208
|
-
actionpack (=
|
|
209
|
-
activesupport (=
|
|
210
|
-
irb
|
|
227
|
+
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)
|
|
228
|
+
railties (8.1.1)
|
|
229
|
+
actionpack (= 8.1.1)
|
|
230
|
+
activesupport (= 8.1.1)
|
|
231
|
+
irb (~> 1.13)
|
|
211
232
|
rackup (>= 1.0.0)
|
|
212
233
|
rake (>= 12.2)
|
|
213
234
|
thor (~> 1.0, >= 1.2.2)
|
|
235
|
+
tsort (>= 0.2)
|
|
214
236
|
zeitwerk (~> 2.6)
|
|
215
237
|
rainbow (3.1.1)
|
|
216
|
-
rake (13.
|
|
217
|
-
random-port (0.7.
|
|
238
|
+
rake (13.3.1)
|
|
239
|
+
random-port (0.7.6)
|
|
240
|
+
tago (~> 0.0)
|
|
218
241
|
rb-fsevent (0.11.2)
|
|
219
242
|
rb-inotify (0.11.1)
|
|
220
243
|
ffi (~> 1.0)
|
|
221
|
-
rdoc (
|
|
244
|
+
rdoc (7.0.3)
|
|
245
|
+
erb
|
|
222
246
|
psych (>= 4.0.0)
|
|
223
|
-
|
|
224
|
-
|
|
247
|
+
tsort
|
|
248
|
+
regexp_parser (2.11.3)
|
|
249
|
+
reline (0.6.3)
|
|
225
250
|
io-console (~> 0.5)
|
|
226
|
-
rexml (3.
|
|
227
|
-
|
|
228
|
-
rspec-core (3.13.0)
|
|
251
|
+
rexml (3.4.4)
|
|
252
|
+
rspec-core (3.13.6)
|
|
229
253
|
rspec-support (~> 3.13.0)
|
|
230
|
-
rspec-expectations (3.13.
|
|
254
|
+
rspec-expectations (3.13.5)
|
|
231
255
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
232
256
|
rspec-support (~> 3.13.0)
|
|
233
|
-
rspec-mocks (3.13.
|
|
257
|
+
rspec-mocks (3.13.7)
|
|
234
258
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
235
259
|
rspec-support (~> 3.13.0)
|
|
236
|
-
rspec-rails (6.1.
|
|
260
|
+
rspec-rails (6.1.5)
|
|
237
261
|
actionpack (>= 6.1)
|
|
238
262
|
activesupport (>= 6.1)
|
|
239
263
|
railties (>= 6.1)
|
|
240
|
-
rspec-core (~> 3.
|
|
241
|
-
rspec-expectations (~> 3.
|
|
242
|
-
rspec-mocks (~> 3.
|
|
243
|
-
rspec-support (~> 3.
|
|
244
|
-
rspec-support (3.13.
|
|
245
|
-
rubocop (1.
|
|
264
|
+
rspec-core (~> 3.13)
|
|
265
|
+
rspec-expectations (~> 3.13)
|
|
266
|
+
rspec-mocks (~> 3.13)
|
|
267
|
+
rspec-support (~> 3.13)
|
|
268
|
+
rspec-support (3.13.6)
|
|
269
|
+
rubocop (1.82.1)
|
|
246
270
|
json (~> 2.3)
|
|
247
|
-
language_server-protocol (
|
|
271
|
+
language_server-protocol (~> 3.17.0.2)
|
|
272
|
+
lint_roller (~> 1.1.0)
|
|
248
273
|
parallel (~> 1.10)
|
|
249
274
|
parser (>= 3.3.0.2)
|
|
250
275
|
rainbow (>= 2.2.2, < 4.0)
|
|
251
|
-
regexp_parser (>= 2.
|
|
252
|
-
|
|
253
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
276
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
277
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
254
278
|
ruby-progressbar (~> 1.7)
|
|
255
|
-
unicode-display_width (>= 2.4.0, <
|
|
256
|
-
rubocop-ast (1.
|
|
257
|
-
parser (>= 3.3.
|
|
258
|
-
|
|
259
|
-
|
|
279
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
280
|
+
rubocop-ast (1.48.0)
|
|
281
|
+
parser (>= 3.3.7.2)
|
|
282
|
+
prism (~> 1.4)
|
|
283
|
+
rubocop-minitest (0.38.2)
|
|
284
|
+
lint_roller (~> 1.1)
|
|
285
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
286
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
287
|
+
rubocop-performance (1.26.1)
|
|
288
|
+
lint_roller (~> 1.1)
|
|
289
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
290
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
291
|
+
rubocop-rake (0.7.1)
|
|
292
|
+
lint_roller (~> 1.1)
|
|
293
|
+
rubocop (>= 1.72.1)
|
|
294
|
+
rubocop-rspec (3.8.0)
|
|
295
|
+
lint_roller (~> 1.1)
|
|
296
|
+
rubocop (~> 1.81)
|
|
260
297
|
ruby-progressbar (1.13.0)
|
|
261
298
|
ruby2_keywords (0.0.5)
|
|
299
|
+
securerandom (0.4.1)
|
|
262
300
|
semantic (1.6.1)
|
|
263
301
|
shellany (0.0.1)
|
|
264
302
|
simplecov (0.22.0)
|
|
265
303
|
docile (~> 1.1)
|
|
266
304
|
simplecov-html (~> 0.11)
|
|
267
305
|
simplecov_json_formatter (~> 0.1)
|
|
268
|
-
simplecov-
|
|
306
|
+
simplecov-cobertura (3.1.0)
|
|
307
|
+
rexml
|
|
308
|
+
simplecov (~> 0.19)
|
|
309
|
+
simplecov-html (0.13.2)
|
|
269
310
|
simplecov_json_formatter (0.1.4)
|
|
270
311
|
sinatra (3.2.0)
|
|
271
312
|
mustermann (~> 3.0)
|
|
@@ -273,68 +314,82 @@ GEM
|
|
|
273
314
|
rack-protection (= 3.2.0)
|
|
274
315
|
tilt (~> 2.0)
|
|
275
316
|
slop (4.10.1)
|
|
276
|
-
stringio (3.
|
|
277
|
-
strscan (3.1.0)
|
|
317
|
+
stringio (3.2.0)
|
|
278
318
|
sys-proctable (1.3.0)
|
|
279
319
|
ffi (~> 1.1)
|
|
280
|
-
sys-uname (1.
|
|
320
|
+
sys-uname (1.4.1)
|
|
281
321
|
ffi (~> 1.1)
|
|
282
|
-
|
|
322
|
+
memoist3 (~> 1.0.0)
|
|
323
|
+
tago (0.6.0)
|
|
324
|
+
temple (0.10.4)
|
|
283
325
|
thin (1.8.2)
|
|
284
326
|
daemons (~> 1.0, >= 1.0.9)
|
|
285
327
|
eventmachine (~> 1.0, >= 1.0.4)
|
|
286
328
|
rack (>= 1, < 3)
|
|
287
|
-
thor (1.
|
|
288
|
-
threads (0.
|
|
329
|
+
thor (1.4.0)
|
|
330
|
+
threads (0.5.0)
|
|
289
331
|
backtrace (~> 0)
|
|
290
332
|
concurrent-ruby (~> 1.0)
|
|
291
|
-
tilt (2.
|
|
292
|
-
total (0.4.
|
|
293
|
-
|
|
294
|
-
|
|
333
|
+
tilt (2.6.1)
|
|
334
|
+
total (0.4.2)
|
|
335
|
+
tsort (0.2.0)
|
|
336
|
+
typhoeus (1.5.0)
|
|
337
|
+
ethon (>= 0.9.0, < 0.16.0)
|
|
295
338
|
tzinfo (2.0.6)
|
|
296
339
|
concurrent-ruby (~> 1.0)
|
|
297
|
-
unicode-display_width (2.
|
|
340
|
+
unicode-display_width (3.2.0)
|
|
341
|
+
unicode-emoji (~> 4.1)
|
|
342
|
+
unicode-emoji (4.2.0)
|
|
343
|
+
uri (1.1.1)
|
|
298
344
|
usagewatch (0.0.7)
|
|
299
345
|
usagewatch_ext (0.2.1)
|
|
300
346
|
usagewatch (~> 0.0.6)
|
|
301
|
-
|
|
347
|
+
useragent (0.16.11)
|
|
348
|
+
webmock (3.26.1)
|
|
302
349
|
addressable (>= 2.8.0)
|
|
303
350
|
crack (>= 0.3.2)
|
|
304
351
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
305
|
-
webrick (1.
|
|
306
|
-
xcop (0.
|
|
352
|
+
webrick (1.9.2)
|
|
353
|
+
xcop (0.8.0)
|
|
307
354
|
differ (~> 0.1.2)
|
|
308
355
|
nokogiri (~> 1.10)
|
|
309
356
|
rainbow (~> 3.0)
|
|
310
357
|
slop (~> 4.4)
|
|
311
|
-
yard (0.9.
|
|
312
|
-
zache (0.
|
|
313
|
-
zeitwerk (2.
|
|
314
|
-
zold-score (0.
|
|
358
|
+
yard (0.9.38)
|
|
359
|
+
zache (0.15.2)
|
|
360
|
+
zeitwerk (2.7.4)
|
|
361
|
+
zold-score (0.6.0)
|
|
362
|
+
openssl (~> 3.0)
|
|
315
363
|
|
|
316
364
|
PLATFORMS
|
|
317
365
|
arm64-darwin-22
|
|
366
|
+
arm64-darwin-23
|
|
367
|
+
arm64-darwin-24
|
|
318
368
|
x86_64-linux
|
|
319
369
|
|
|
320
370
|
DEPENDENCIES
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
guard
|
|
324
|
-
minitest (
|
|
325
|
-
minitest
|
|
326
|
-
minitest-hooks (
|
|
327
|
-
minitest-
|
|
328
|
-
|
|
371
|
+
csv (~> 3.3)
|
|
372
|
+
cucumber (~> 9.2)
|
|
373
|
+
guard (~> 2.19)
|
|
374
|
+
guard-minitest (~> 2.4)
|
|
375
|
+
minitest (~> 6.0)
|
|
376
|
+
minitest-hooks (~> 1.5)
|
|
377
|
+
minitest-mock (~> 5.27)
|
|
378
|
+
minitest-reporters (~> 1.7)
|
|
379
|
+
rake (~> 13.2)
|
|
329
380
|
random-port (~> 0)
|
|
330
|
-
rspec-rails (
|
|
331
|
-
rubocop (
|
|
332
|
-
rubocop-
|
|
333
|
-
|
|
334
|
-
|
|
381
|
+
rspec-rails (~> 6.1)
|
|
382
|
+
rubocop (~> 1.65)
|
|
383
|
+
rubocop-minitest (> 0)
|
|
384
|
+
rubocop-performance (> 0)
|
|
385
|
+
rubocop-rake (> 0)
|
|
386
|
+
rubocop-rspec (~> 3.0)
|
|
387
|
+
simplecov (~> 0.22)
|
|
388
|
+
simplecov-cobertura (~> 3.0)
|
|
389
|
+
webmock (~> 3.23)
|
|
335
390
|
xcop (>= 0.6)
|
|
336
|
-
yard (
|
|
391
|
+
yard (~> 0.9)
|
|
337
392
|
zold!
|
|
338
393
|
|
|
339
394
|
BUNDLED WITH
|
|
340
|
-
2.
|
|
395
|
+
2.6.9
|
data/Guardfile
CHANGED
|
File without changes
|