Add `gem "matrix"` to Gemfile
gem "matrix" is no longer a default gem from Ruby 3.1 onward. Adding the gem to Gemfile is necessary until `classifier-reborn` adds it as a dependency. Avoiding RUBY_VERSION constraints to ensure the gem is used on older Ruby versions in CI matrix
This commit is contained in:
parent
07e510f964
commit
d0eb07ba29
1
Gemfile
1
Gemfile
|
|
@ -73,6 +73,7 @@ group :jekyll_optional_dependencies do
|
||||||
gem "jekyll-paginate"
|
gem "jekyll-paginate"
|
||||||
gem "jekyll-redirect-from"
|
gem "jekyll-redirect-from"
|
||||||
gem "kramdown-syntax-coderay"
|
gem "kramdown-syntax-coderay"
|
||||||
|
gem "matrix"
|
||||||
gem "mime-types", "~> 3.0"
|
gem "mime-types", "~> 3.0"
|
||||||
gem "rdoc", "~> 6.3.0"
|
gem "rdoc", "~> 6.3.0"
|
||||||
gem "tomlrb"
|
gem "tomlrb"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue