From 1a330c954fac78dfecc9a72ade182e3835afcc9d Mon Sep 17 00:00:00 2001 From: meows Date: Tue, 9 Jan 2024 10:28:59 -0700 Subject: [PATCH 1/3] ecip_validation.yml: peg bundler version Signed-off-by: meows --- .github/workflows/ecip_validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecip_validation.yml b/.github/workflows/ecip_validation.yml index ab4a02a0e..a01707fd7 100644 --- a/.github/workflows/ecip_validation.yml +++ b/.github/workflows/ecip_validation.yml @@ -13,6 +13,6 @@ jobs: ruby-version: 2.6.10 - name: Validate the ECIP spec files run: | - gem install bundler + gem install bundler -v 2.4.22 bundle install --jobs 4 --retry 3 shopt -s globstar; bundle exec ecip_validator _specs/**/*.md From 8324a1b392aff786985ae1a115b06e384213851b Mon Sep 17 00:00:00 2001 From: meows Date: Tue, 9 Jan 2024 10:49:53 -0700 Subject: [PATCH 2/3] bump gemfile to v0.10.0 Signed-off-by: meows --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 352f5c165..06e93e6e7 100644 --- a/Gemfile +++ b/Gemfile @@ -32,7 +32,7 @@ gem "wdm", "~> 0.1.0" if Gem.win_platform? gem "html-proofer", '>=3.3.1' -gem 'ecip_validator', '>= 0.9.0' +gem 'ecip_validator', '>= 0.10.0' # Rel issue: https://github.com/ethereumclassic/ECIPs/pull/308#issuecomment-618044919 gem 'faraday', '~> 0.17.3' From f39e21e3aa0c2958a508801f8d03e8a51a706f30 Mon Sep 17 00:00:00 2001 From: meows Date: Tue, 9 Jan 2024 10:59:34 -0700 Subject: [PATCH 3/3] comments for source of the ecip_validator tool Signed-off-by: meows --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 06e93e6e7..215ae4f29 100644 --- a/Gemfile +++ b/Gemfile @@ -32,6 +32,8 @@ gem "wdm", "~> 0.1.0" if Gem.win_platform? gem "html-proofer", '>=3.3.1' +# https://rubygems.org/gems/ecip_validator +# https://github.com/meowsbits/ecip_validator gem 'ecip_validator', '>= 0.10.0' # Rel issue: https://github.com/ethereumclassic/ECIPs/pull/308#issuecomment-618044919