diff --git a/.0pdd.yml b/.0pdd.yml index 36d0a7fe..052cfe88 100644 --- a/.0pdd.yml +++ b/.0pdd.yml @@ -1,3 +1,23 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- errors: - yegor256@gmail.com # alerts: diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml new file mode 100644 index 00000000..8f510c7a --- /dev/null +++ b/.github/workflows/actionlint.yml @@ -0,0 +1,41 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- +name: actionlint +'on': + push: + branches: + - master + pull_request: + branches: + - master +jobs: + actionlint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - name: Download actionlint + id: get_actionlint + # yamllint disable-line rule:line-length + run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) + shell: bash + - name: Check workflow files + run: ${{ steps.get_actionlint.outputs.executable }} -color + shell: bash diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 79a8ae0a..2d05b053 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,3 +1,22 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. --- name: codecov on: diff --git a/.github/workflows/copyrights.yml b/.github/workflows/copyrights.yml new file mode 100644 index 00000000..7c19c20d --- /dev/null +++ b/.github/workflows/copyrights.yml @@ -0,0 +1,30 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- +name: copyrights +'on': + push: + pull_request: +jobs: + copyrights: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: yegor256/copyrights-action@0.0.4 diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml new file mode 100644 index 00000000..773364b7 --- /dev/null +++ b/.github/workflows/yamllint.yml @@ -0,0 +1,34 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- +name: yamllint +'on': + push: + branches: + - master + pull_request: + branches: + - master +jobs: + yamllint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: ibiqlik/action-yamllint@v3 diff --git a/.rubocop.yml b/.rubocop.yml index 85498d14..1ad84a1b 100755 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,23 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- AllCops: Exclude: - 'bin/**/*' diff --git a/.rultor.yml b/.rultor.yml index 96e1718e..4e1b39ae 100755 --- a/.rultor.yml +++ b/.rultor.yml @@ -1,5 +1,25 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- docker: - image: yegor256/rultor-image:1.22.0 + image: yegor256/rultor-image:1.23.1 architect: - yegor256 - davvd diff --git a/.simplecov b/.simplecov index e90fd50e..04312bfd 100644 --- a/.simplecov +++ b/.simplecov @@ -1,7 +1,7 @@ # frozen_string_literal: true # -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/Gemfile b/Gemfile index 0dc82c55..9e69b48b 100755 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/Rakefile b/Rakefile index 4bd94585..eabcf2d1 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/bin/zold b/bin/zold index 729d142c..c52fb38a 100755 --- a/bin/zold +++ b/bin/zold @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # encoding: utf-8 # -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/cucumber.yml b/cucumber.yml index 78342a17..3950df86 100644 --- a/cucumber.yml +++ b/cucumber.yml @@ -1,3 +1,23 @@ +# Copyright (c) 2018-2024 Zerocracy +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the 'Software'), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- default: --format pretty travis: --format progress html_report: --format progress --format html --out=features_report.html diff --git a/features/step_definitions/steps.rb b/features/step_definitions/steps.rb index ac886535..7e44ee38 100644 --- a/features/step_definitions/steps.rb +++ b/features/step_definitions/steps.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/features/support/env.rb b/features/support/env.rb index d1b1096c..b1af0ce1 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/asserts.rb b/fixtures/merge/asserts.rb index b0e5d245..90b5e484 100644 --- a/fixtures/merge/asserts.rb +++ b/fixtures/merge/asserts.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/into_no_wallet/assert.rb b/fixtures/merge/into_no_wallet/assert.rb index 40e452e0..79bc690b 100644 --- a/fixtures/merge/into_no_wallet/assert.rb +++ b/fixtures/merge/into_no_wallet/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/legacy_negatives_stay/assert.rb b/fixtures/merge/legacy_negatives_stay/assert.rb index f424d356..eed1288f 100644 --- a/fixtures/merge/legacy_negatives_stay/assert.rb +++ b/fixtures/merge/legacy_negatives_stay/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/missed_wallets/assert.rb b/fixtures/merge/missed_wallets/assert.rb index 3198311e..2883d16d 100644 --- a/fixtures/merge/missed_wallets/assert.rb +++ b/fixtures/merge/missed_wallets/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/negative_overwriting/assert.rb b/fixtures/merge/negative_overwriting/assert.rb index d206b8f0..4257146d 100644 --- a/fixtures/merge/negative_overwriting/assert.rb +++ b/fixtures/merge/negative_overwriting/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/negatives_in_between/assert.rb b/fixtures/merge/negatives_in_between/assert.rb index cbc6a10c..0f54f17c 100644 --- a/fixtures/merge/negatives_in_between/assert.rb +++ b/fixtures/merge/negatives_in_between/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/random_expenses/assert.rb b/fixtures/merge/random_expenses/assert.rb index 44db52bf..eebe3fea 100644 --- a/fixtures/merge/random_expenses/assert.rb +++ b/fixtures/merge/random_expenses/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/simple_case/assert.rb b/fixtures/merge/simple_case/assert.rb index 40e452e0..79bc690b 100644 --- a/fixtures/merge/simple_case/assert.rb +++ b/fixtures/merge/simple_case/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/fixtures/merge/unconfirmed_income/assert.rb b/fixtures/merge/unconfirmed_income/assert.rb index 53e56701..575164d3 100644 --- a/fixtures/merge/unconfirmed_income/assert.rb +++ b/fixtures/merge/unconfirmed_income/assert.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold.rb b/lib/zold.rb index 8e148c02..9ff860f1 100644 --- a/lib/zold.rb +++ b/lib/zold.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/age.rb b/lib/zold/age.rb index dbcae387..61aae79e 100644 --- a/lib/zold/age.rb +++ b/lib/zold/age.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/amount.rb b/lib/zold/amount.rb index 85287a08..ca5aef95 100644 --- a/lib/zold/amount.rb +++ b/lib/zold/amount.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/cached_wallets.rb b/lib/zold/cached_wallets.rb index 82a68ff4..0b7d2d46 100644 --- a/lib/zold/cached_wallets.rb +++ b/lib/zold/cached_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/args.rb b/lib/zold/commands/args.rb index bbf0e28d..ea5a26fc 100644 --- a/lib/zold/commands/args.rb +++ b/lib/zold/commands/args.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/calculate.rb b/lib/zold/commands/calculate.rb index 92dd8a8f..175ec512 100644 --- a/lib/zold/commands/calculate.rb +++ b/lib/zold/commands/calculate.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/clean.rb b/lib/zold/commands/clean.rb index 5fd14feb..ef6e049a 100644 --- a/lib/zold/commands/clean.rb +++ b/lib/zold/commands/clean.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/create.rb b/lib/zold/commands/create.rb index 6682fabe..dfbfb4f8 100644 --- a/lib/zold/commands/create.rb +++ b/lib/zold/commands/create.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/diff.rb b/lib/zold/commands/diff.rb index 2b8d94d3..f56e50b0 100644 --- a/lib/zold/commands/diff.rb +++ b/lib/zold/commands/diff.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/fetch.rb b/lib/zold/commands/fetch.rb index 9841cedd..f75d93b1 100644 --- a/lib/zold/commands/fetch.rb +++ b/lib/zold/commands/fetch.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/invoice.rb b/lib/zold/commands/invoice.rb index 5ef40beb..e64e9cea 100644 --- a/lib/zold/commands/invoice.rb +++ b/lib/zold/commands/invoice.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/list.rb b/lib/zold/commands/list.rb index 854d99d7..290076b4 100644 --- a/lib/zold/commands/list.rb +++ b/lib/zold/commands/list.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/merge.rb b/lib/zold/commands/merge.rb index 6f49ca83..d9e3fb9b 100644 --- a/lib/zold/commands/merge.rb +++ b/lib/zold/commands/merge.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/next.rb b/lib/zold/commands/next.rb index adf1152d..551485ee 100644 --- a/lib/zold/commands/next.rb +++ b/lib/zold/commands/next.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/node.rb b/lib/zold/commands/node.rb index b62ad381..0fbae6b7 100644 --- a/lib/zold/commands/node.rb +++ b/lib/zold/commands/node.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/pay.rb b/lib/zold/commands/pay.rb index 1f0e1559..22cbc724 100644 --- a/lib/zold/commands/pay.rb +++ b/lib/zold/commands/pay.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/propagate.rb b/lib/zold/commands/propagate.rb index 5a0fdfb1..5b533855 100644 --- a/lib/zold/commands/propagate.rb +++ b/lib/zold/commands/propagate.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/pull.rb b/lib/zold/commands/pull.rb index 89d6236e..e0835578 100644 --- a/lib/zold/commands/pull.rb +++ b/lib/zold/commands/pull.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/push.rb b/lib/zold/commands/push.rb index 3eabc396..031d3a06 100644 --- a/lib/zold/commands/push.rb +++ b/lib/zold/commands/push.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/remote.rb b/lib/zold/commands/remote.rb index 36c0d8b0..4a6006db 100644 --- a/lib/zold/commands/remote.rb +++ b/lib/zold/commands/remote.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/remove.rb b/lib/zold/commands/remove.rb index 18a05f26..52eff5e3 100644 --- a/lib/zold/commands/remove.rb +++ b/lib/zold/commands/remove.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/routines.rb b/lib/zold/commands/routines.rb index af3f5b4f..43cfc767 100644 --- a/lib/zold/commands/routines.rb +++ b/lib/zold/commands/routines.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/routines/audit.rb b/lib/zold/commands/routines/audit.rb index 361f2b5d..c1e7b91a 100644 --- a/lib/zold/commands/routines/audit.rb +++ b/lib/zold/commands/routines/audit.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/routines/gc.rb b/lib/zold/commands/routines/gc.rb index 5bfcc666..b8b50cf1 100644 --- a/lib/zold/commands/routines/gc.rb +++ b/lib/zold/commands/routines/gc.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/routines/reconnect.rb b/lib/zold/commands/routines/reconnect.rb index 80d007c1..882a1289 100644 --- a/lib/zold/commands/routines/reconnect.rb +++ b/lib/zold/commands/routines/reconnect.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/routines/retire.rb b/lib/zold/commands/routines/retire.rb index 557e4efa..f06e42fe 100644 --- a/lib/zold/commands/routines/retire.rb +++ b/lib/zold/commands/routines/retire.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/show.rb b/lib/zold/commands/show.rb index e3a46eda..f284e7ea 100644 --- a/lib/zold/commands/show.rb +++ b/lib/zold/commands/show.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/taxes.rb b/lib/zold/commands/taxes.rb index 70c8238b..430cc242 100644 --- a/lib/zold/commands/taxes.rb +++ b/lib/zold/commands/taxes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/commands/thread_badge.rb b/lib/zold/commands/thread_badge.rb index dd4c6959..abcf2742 100644 --- a/lib/zold/commands/thread_badge.rb +++ b/lib/zold/commands/thread_badge.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/copies.rb b/lib/zold/copies.rb index 48d5df16..e2f5faf0 100644 --- a/lib/zold/copies.rb +++ b/lib/zold/copies.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/dir_items.rb b/lib/zold/dir_items.rb index c1fea444..9a9ddf0c 100644 --- a/lib/zold/dir_items.rb +++ b/lib/zold/dir_items.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/endless.rb b/lib/zold/endless.rb index aa588430..24d36a4d 100644 --- a/lib/zold/endless.rb +++ b/lib/zold/endless.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/gem.rb b/lib/zold/gem.rb index 713340c9..0763b4e9 100644 --- a/lib/zold/gem.rb +++ b/lib/zold/gem.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/hands.rb b/lib/zold/hands.rb index 9a4925dc..e40078bb 100644 --- a/lib/zold/hands.rb +++ b/lib/zold/hands.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/head.rb b/lib/zold/head.rb index 788db145..d3d52a30 100644 --- a/lib/zold/head.rb +++ b/lib/zold/head.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/hexnum.rb b/lib/zold/hexnum.rb index 3b9ea7f3..129944a3 100644 --- a/lib/zold/hexnum.rb +++ b/lib/zold/hexnum.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/http.rb b/lib/zold/http.rb index 3d69fd57..b8c82d45 100644 --- a/lib/zold/http.rb +++ b/lib/zold/http.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/hungry_wallets.rb b/lib/zold/hungry_wallets.rb index b0de5573..d2145687 100644 --- a/lib/zold/hungry_wallets.rb +++ b/lib/zold/hungry_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/id.rb b/lib/zold/id.rb index ea10a3ba..08db7678 100644 --- a/lib/zold/id.rb +++ b/lib/zold/id.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/json_page.rb b/lib/zold/json_page.rb index 2cd55179..ca2cfbab 100644 --- a/lib/zold/json_page.rb +++ b/lib/zold/json_page.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/key.rb b/lib/zold/key.rb index 3588b153..bc5089b0 100644 --- a/lib/zold/key.rb +++ b/lib/zold/key.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/log.rb b/lib/zold/log.rb index 4cb0684b..a59e6166 100644 --- a/lib/zold/log.rb +++ b/lib/zold/log.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/metronome.rb b/lib/zold/metronome.rb index 2174bfed..e5d1505a 100644 --- a/lib/zold/metronome.rb +++ b/lib/zold/metronome.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/async_entrance.rb b/lib/zold/node/async_entrance.rb index 572fb384..c1bf1b8e 100644 --- a/lib/zold/node/async_entrance.rb +++ b/lib/zold/node/async_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/entrance.rb b/lib/zold/node/entrance.rb index 073bfe36..9157f7f9 100644 --- a/lib/zold/node/entrance.rb +++ b/lib/zold/node/entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/farm.rb b/lib/zold/node/farm.rb index 82ce6f41..617faf63 100644 --- a/lib/zold/node/farm.rb +++ b/lib/zold/node/farm.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/farmers.rb b/lib/zold/node/farmers.rb index 7843f704..b18bb01e 100644 --- a/lib/zold/node/farmers.rb +++ b/lib/zold/node/farmers.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/front.rb b/lib/zold/node/front.rb index 715cb10d..e804ff41 100755 --- a/lib/zold/node/front.rb +++ b/lib/zold/node/front.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/journaled_pipeline.rb b/lib/zold/node/journaled_pipeline.rb index d70c3a45..207aaee9 100644 --- a/lib/zold/node/journaled_pipeline.rb +++ b/lib/zold/node/journaled_pipeline.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/nodup_entrance.rb b/lib/zold/node/nodup_entrance.rb index c1c55ced..d61f11bb 100644 --- a/lib/zold/node/nodup_entrance.rb +++ b/lib/zold/node/nodup_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/nospam_entrance.rb b/lib/zold/node/nospam_entrance.rb index 3e3a3604..febe4acc 100644 --- a/lib/zold/node/nospam_entrance.rb +++ b/lib/zold/node/nospam_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/pipeline.rb b/lib/zold/node/pipeline.rb index 358229a0..191987f3 100644 --- a/lib/zold/node/pipeline.rb +++ b/lib/zold/node/pipeline.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/safe_entrance.rb b/lib/zold/node/safe_entrance.rb index c73f6a28..d6e5054e 100644 --- a/lib/zold/node/safe_entrance.rb +++ b/lib/zold/node/safe_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/soft_error.rb b/lib/zold/node/soft_error.rb index 118161f9..fe5dd364 100644 --- a/lib/zold/node/soft_error.rb +++ b/lib/zold/node/soft_error.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/spread_entrance.rb b/lib/zold/node/spread_entrance.rb index 09901bb8..2649254a 100644 --- a/lib/zold/node/spread_entrance.rb +++ b/lib/zold/node/spread_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/sync_entrance.rb b/lib/zold/node/sync_entrance.rb index 634920c0..6e0f350c 100644 --- a/lib/zold/node/sync_entrance.rb +++ b/lib/zold/node/sync_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/node/trace.rb b/lib/zold/node/trace.rb index 30ac92cb..efa12c45 100644 --- a/lib/zold/node/trace.rb +++ b/lib/zold/node/trace.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/patch.rb b/lib/zold/patch.rb index 66b61afa..dabfb691 100644 --- a/lib/zold/patch.rb +++ b/lib/zold/patch.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/prefixes.rb b/lib/zold/prefixes.rb index af3d2a6f..bed1caab 100644 --- a/lib/zold/prefixes.rb +++ b/lib/zold/prefixes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/remotes.rb b/lib/zold/remotes.rb index ba3cb91a..bc4eddc1 100644 --- a/lib/zold/remotes.rb +++ b/lib/zold/remotes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/signature.rb b/lib/zold/signature.rb index b2725d36..8c1322ca 100644 --- a/lib/zold/signature.rb +++ b/lib/zold/signature.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/size.rb b/lib/zold/size.rb index 37184e14..77512257 100644 --- a/lib/zold/size.rb +++ b/lib/zold/size.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/sync_wallets.rb b/lib/zold/sync_wallets.rb index 82d8fb06..3d484e1f 100644 --- a/lib/zold/sync_wallets.rb +++ b/lib/zold/sync_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/tax.rb b/lib/zold/tax.rb index 2a7ce06d..26b75791 100644 --- a/lib/zold/tax.rb +++ b/lib/zold/tax.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/thread_pool.rb b/lib/zold/thread_pool.rb index 265b6ef3..c49b2767 100644 --- a/lib/zold/thread_pool.rb +++ b/lib/zold/thread_pool.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/tree_wallets.rb b/lib/zold/tree_wallets.rb index 3cbf7e31..2560756b 100644 --- a/lib/zold/tree_wallets.rb +++ b/lib/zold/tree_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/txn.rb b/lib/zold/txn.rb index 3ed850ad..52610376 100644 --- a/lib/zold/txn.rb +++ b/lib/zold/txn.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/txns.rb b/lib/zold/txns.rb index 55e191f3..615aa45d 100644 --- a/lib/zold/txns.rb +++ b/lib/zold/txns.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/upgrades.rb b/lib/zold/upgrades.rb index 2f625b1a..18306fb0 100644 --- a/lib/zold/upgrades.rb +++ b/lib/zold/upgrades.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/verbose_thread.rb b/lib/zold/verbose_thread.rb index 48ec0c5b..73f3db98 100644 --- a/lib/zold/verbose_thread.rb +++ b/lib/zold/verbose_thread.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/version.rb b/lib/zold/version.rb index f70d625d..871628be 100644 --- a/lib/zold/version.rb +++ b/lib/zold/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/version_file.rb b/lib/zold/version_file.rb index b18dbbff..31f205c1 100644 --- a/lib/zold/version_file.rb +++ b/lib/zold/version_file.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/wallet.rb b/lib/zold/wallet.rb index 0f1d8a2d..de65057e 100644 --- a/lib/zold/wallet.rb +++ b/lib/zold/wallet.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/lib/zold/wallets.rb b/lib/zold/wallets.rb index 8d4fd1c9..537277d8 100644 --- a/lib/zold/wallets.rb +++ b/lib/zold/wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/routines/test_audit.rb b/test/commands/routines/test_audit.rb index 4f82ec05..29dc305b 100644 --- a/test/commands/routines/test_audit.rb +++ b/test/commands/routines/test_audit.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/routines/test_gc.rb b/test/commands/routines/test_gc.rb index 2b73243b..3bcd6dc2 100644 --- a/test/commands/routines/test_gc.rb +++ b/test/commands/routines/test_gc.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/routines/test_reconcile.rb b/test/commands/routines/test_reconcile.rb index cdff5c52..f564a356 100644 --- a/test/commands/routines/test_reconcile.rb +++ b/test/commands/routines/test_reconcile.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/routines/test_reconnect.rb b/test/commands/routines/test_reconnect.rb index 8345aad4..e11a0b05 100755 --- a/test/commands/routines/test_reconnect.rb +++ b/test/commands/routines/test_reconnect.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/routines/test_retire.rb b/test/commands/routines/test_retire.rb index 776d1e89..a81becce 100644 --- a/test/commands/routines/test_retire.rb +++ b/test/commands/routines/test_retire.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_calculate.rb b/test/commands/test_calculate.rb index 18885930..7a07c8a6 100644 --- a/test/commands/test_calculate.rb +++ b/test/commands/test_calculate.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_clean.rb b/test/commands/test_clean.rb index 0d5e1561..72b79a8f 100644 --- a/test/commands/test_clean.rb +++ b/test/commands/test_clean.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_create.rb b/test/commands/test_create.rb index eba02fe7..6b2ba448 100644 --- a/test/commands/test_create.rb +++ b/test/commands/test_create.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_diff.rb b/test/commands/test_diff.rb index 50364c9f..9c7cb4dc 100644 --- a/test/commands/test_diff.rb +++ b/test/commands/test_diff.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_fetch.rb b/test/commands/test_fetch.rb index ee1a58d3..de6e2682 100755 --- a/test/commands/test_fetch.rb +++ b/test/commands/test_fetch.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_invoice.rb b/test/commands/test_invoice.rb index 41f81c89..812f2bcd 100644 --- a/test/commands/test_invoice.rb +++ b/test/commands/test_invoice.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_list.rb b/test/commands/test_list.rb index 6c84c093..d1cdc60e 100644 --- a/test/commands/test_list.rb +++ b/test/commands/test_list.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_merge.rb b/test/commands/test_merge.rb index e83186dc..486db2b6 100644 --- a/test/commands/test_merge.rb +++ b/test/commands/test_merge.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_node.rb b/test/commands/test_node.rb index 89a3bab0..7dcf0af5 100755 --- a/test/commands/test_node.rb +++ b/test/commands/test_node.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_pay.rb b/test/commands/test_pay.rb index deebb657..0ec412c8 100644 --- a/test/commands/test_pay.rb +++ b/test/commands/test_pay.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_propagate.rb b/test/commands/test_propagate.rb index 16478d91..14cea45c 100644 --- a/test/commands/test_propagate.rb +++ b/test/commands/test_propagate.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_pull.rb b/test/commands/test_pull.rb index ac24750a..f63d5957 100755 --- a/test/commands/test_pull.rb +++ b/test/commands/test_pull.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_push.rb b/test/commands/test_push.rb index 2f907b02..280b192c 100755 --- a/test/commands/test_push.rb +++ b/test/commands/test_push.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_remote.rb b/test/commands/test_remote.rb index 9510cd67..8c505b43 100755 --- a/test/commands/test_remote.rb +++ b/test/commands/test_remote.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_remove.rb b/test/commands/test_remove.rb index 0db75bee..4f2c624d 100644 --- a/test/commands/test_remove.rb +++ b/test/commands/test_remove.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_show.rb b/test/commands/test_show.rb index 521c4ec5..ca1ebd1f 100644 --- a/test/commands/test_show.rb +++ b/test/commands/test_show.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/commands/test_taxes.rb b/test/commands/test_taxes.rb index 16ff7e2e..29c20d55 100644 --- a/test/commands/test_taxes.rb +++ b/test/commands/test_taxes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/fake_home.rb b/test/fake_home.rb index 120dd363..e1acced1 100755 --- a/test/fake_home.rb +++ b/test/fake_home.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/fake_entrance.rb b/test/node/fake_entrance.rb index 1432fa84..b300fa94 100644 --- a/test/node/fake_entrance.rb +++ b/test/node/fake_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/fake_node.rb b/test/node/fake_node.rb index ad6c474d..6574bd4a 100755 --- a/test/node/fake_node.rb +++ b/test/node/fake_node.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_async_entrance.rb b/test/node/test_async_entrance.rb index 9dc6439a..4e4be5e2 100644 --- a/test/node/test_async_entrance.rb +++ b/test/node/test_async_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_entrance.rb b/test/node/test_entrance.rb index 0b403dd2..fc0b28ce 100755 --- a/test/node/test_entrance.rb +++ b/test/node/test_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_farm.rb b/test/node/test_farm.rb index 797294c3..aad789a4 100644 --- a/test/node/test_farm.rb +++ b/test/node/test_farm.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_farmers.rb b/test/node/test_farmers.rb index 8b1118e2..312ccc9a 100755 --- a/test/node/test_farmers.rb +++ b/test/node/test_farmers.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_front.rb b/test/node/test_front.rb index 3a327485..3c743d2a 100755 --- a/test/node/test_front.rb +++ b/test/node/test_front.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_nodup_entrance.rb b/test/node/test_nodup_entrance.rb index 164d9634..6b6d617c 100644 --- a/test/node/test_nodup_entrance.rb +++ b/test/node/test_nodup_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_nospam_entrance.rb b/test/node/test_nospam_entrance.rb index 261127e6..09efe7fd 100644 --- a/test/node/test_nospam_entrance.rb +++ b/test/node/test_nospam_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_safe_entrance.rb b/test/node/test_safe_entrance.rb index 39c30943..2a21a175 100644 --- a/test/node/test_safe_entrance.rb +++ b/test/node/test_safe_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_spread_entrance.rb b/test/node/test_spread_entrance.rb index b14f0f12..d38d925c 100644 --- a/test/node/test_spread_entrance.rb +++ b/test/node/test_spread_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_sync_entrance.rb b/test/node/test_sync_entrance.rb index c33d22c6..73b530b7 100644 --- a/test/node/test_sync_entrance.rb +++ b/test/node/test_sync_entrance.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/node/test_trace.rb b/test/node/test_trace.rb index bccc2222..851cc161 100644 --- a/test/node/test_trace.rb +++ b/test/node/test_trace.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test__helper.rb b/test/test__helper.rb index 600c8d33..10833849 100755 --- a/test/test__helper.rb +++ b/test/test__helper.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_age.rb b/test/test_age.rb index fbd58a1b..dae99cc9 100644 --- a/test/test_age.rb +++ b/test/test_age.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_amount.rb b/test/test_amount.rb index ab2eb4e7..d487d869 100644 --- a/test/test_amount.rb +++ b/test/test_amount.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_cached_wallets.rb b/test/test_cached_wallets.rb index 9278df36..ad0c1f57 100644 --- a/test/test_cached_wallets.rb +++ b/test/test_cached_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_copies.rb b/test/test_copies.rb index 68025ece..ce066eec 100644 --- a/test/test_copies.rb +++ b/test/test_copies.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_dir_items.rb b/test/test_dir_items.rb index ffc62573..3881d5b9 100644 --- a/test/test_dir_items.rb +++ b/test/test_dir_items.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_hands.rb b/test/test_hands.rb index 1ea0eac1..164e3884 100644 --- a/test/test_hands.rb +++ b/test/test_hands.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_hexnum.rb b/test/test_hexnum.rb index 3f9b41c0..8a59e411 100644 --- a/test/test_hexnum.rb +++ b/test/test_hexnum.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_http.rb b/test/test_http.rb index 2be7aec6..fddb3242 100755 --- a/test/test_http.rb +++ b/test/test_http.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_hungry_wallets.rb b/test/test_hungry_wallets.rb index 28251174..4d81b88e 100644 --- a/test/test_hungry_wallets.rb +++ b/test/test_hungry_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_id.rb b/test/test_id.rb index 55e911c0..614ad6be 100644 --- a/test/test_id.rb +++ b/test/test_id.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_json_page.rb b/test/test_json_page.rb index 2e8aa3da..74283c3b 100644 --- a/test/test_json_page.rb +++ b/test/test_json_page.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_key.rb b/test/test_key.rb index 7a13c385..7b565981 100644 --- a/test/test_key.rb +++ b/test/test_key.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_log.rb b/test/test_log.rb index b3b8a031..969477f2 100644 --- a/test/test_log.rb +++ b/test/test_log.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_metronome.rb b/test/test_metronome.rb index 2e6d32b5..339741b0 100644 --- a/test/test_metronome.rb +++ b/test/test_metronome.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_patch.rb b/test/test_patch.rb index 458d6917..8cebd8fb 100644 --- a/test/test_patch.rb +++ b/test/test_patch.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_prefixes.rb b/test/test_prefixes.rb index e8be96d3..10ad5c68 100644 --- a/test/test_prefixes.rb +++ b/test/test_prefixes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_remotes.rb b/test/test_remotes.rb index f2d874b1..8083a85d 100755 --- a/test/test_remotes.rb +++ b/test/test_remotes.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_signature.rb b/test/test_signature.rb index e034cbd0..978551d6 100644 --- a/test/test_signature.rb +++ b/test/test_signature.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_size.rb b/test/test_size.rb index 0a56ca61..9ae4e32c 100644 --- a/test/test_size.rb +++ b/test/test_size.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_sync_wallets.rb b/test/test_sync_wallets.rb index 4bbaa995..6c5a01d4 100644 --- a/test/test_sync_wallets.rb +++ b/test/test_sync_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_tax.rb b/test/test_tax.rb index 1ddf7736..c15c4887 100644 --- a/test/test_tax.rb +++ b/test/test_tax.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_thread_pool.rb b/test/test_thread_pool.rb index 1f493c58..6976722e 100644 --- a/test/test_thread_pool.rb +++ b/test/test_thread_pool.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_tree_wallets.rb b/test/test_tree_wallets.rb index 2818131b..b895eb76 100644 --- a/test/test_tree_wallets.rb +++ b/test/test_tree_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_txn.rb b/test/test_txn.rb index 4bda07b4..58d31034 100644 --- a/test/test_txn.rb +++ b/test/test_txn.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_upgrades.rb b/test/test_upgrades.rb index cace2ecf..7abee6bf 100755 --- a/test/test_upgrades.rb +++ b/test/test_upgrades.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_verbose_thread.rb b/test/test_verbose_thread.rb index f38a78f9..608a85f5 100644 --- a/test/test_verbose_thread.rb +++ b/test/test_verbose_thread.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_wallet.rb b/test/test_wallet.rb index d1e10c31..3e7478af 100644 --- a/test/test_wallet.rb +++ b/test/test_wallet.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_wallets.rb b/test/test_wallets.rb index 00602aec..3516731b 100644 --- a/test/test_wallets.rb +++ b/test/test_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/test_zold.rb b/test/test_zold.rb index 4882f040..a36a0dc3 100755 --- a/test/test_zold.rb +++ b/test/test_zold.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/upgrades/test_delete_banned_wallets.rb b/test/upgrades/test_delete_banned_wallets.rb index 5876f524..3ba8baab 100644 --- a/test/upgrades/test_delete_banned_wallets.rb +++ b/test/upgrades/test_delete_banned_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/test/upgrades/test_protocol_up.rb b/test/upgrades/test_protocol_up.rb index 48303258..8748a5b6 100644 --- a/test/upgrades/test_protocol_up.rb +++ b/test/upgrades/test_protocol_up.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/upgrades/2.rb b/upgrades/2.rb index 524c92a3..8170cf9d 100644 --- a/upgrades/2.rb +++ b/upgrades/2.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/upgrades/delete_banned_wallets.rb b/upgrades/delete_banned_wallets.rb index 7b92ef5f..7d7aae7b 100644 --- a/upgrades/delete_banned_wallets.rb +++ b/upgrades/delete_banned_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/upgrades/move_wallets_into_tree.rb b/upgrades/move_wallets_into_tree.rb index c604119a..8e8cc29c 100644 --- a/upgrades/move_wallets_into_tree.rb +++ b/upgrades/move_wallets_into_tree.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/upgrades/protocol_up.rb b/upgrades/protocol_up.rb index 4d949cce..b31b0b22 100644 --- a/upgrades/protocol_up.rb +++ b/upgrades/protocol_up.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/upgrades/rename_foreign_wallets.rb b/upgrades/rename_foreign_wallets.rb index 320a1863..023f5971 100644 --- a/upgrades/rename_foreign_wallets.rb +++ b/upgrades/rename_foreign_wallets.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal diff --git a/zold.gemspec b/zold.gemspec index 1ca6abc4..1bbf314a 100755 --- a/zold.gemspec +++ b/zold.gemspec @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright (c) 2018-2023 Zerocracy +# Copyright (c) 2018-2024 Zerocracy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal