Skip to content

Commit

Permalink
Merge pull request #12856 from koic/workaround_for_prism_0_26
Browse files Browse the repository at this point in the history
Workaround for incompatibilities between Prism 0.25.0 and 0.26.0
  • Loading branch information
koic committed Apr 19, 2024
2 parents d86b8d1 + 245b8cc commit dd47fa8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ gem 'asciidoctor'
gem 'bump', require: false
gem 'bundler', '>= 1.15.0', '< 3.0'
gem 'memory_profiler', platform: :mri
gem 'prism', '>= 0.25.0'
# FIXME: This is a workaround for incompatibilities between Prism 0.25.0 and 0.26.0.
# To upgrade to Prism 0.26+, it is necessary to investigate the following build error
# and provide feedback to Prism:
# https://github.com/rubocop/rubocop/actions/runs/8748485587/job/24008584735?pr=12855
gem 'prism', '0.25.0'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.7'
gem 'rubocop-performance', '~> 1.21.0'
Expand Down

0 comments on commit dd47fa8

Please sign in to comment.