Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/ecip validation bundler version #523

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ecip_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ gem "wdm", "~> 0.1.0" if Gem.win_platform?

gem "html-proofer", '>=3.3.1'

gem 'ecip_validator', '>= 0.9.0'
# 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
gem 'faraday', '~> 0.17.3'
Loading