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

Workaround for incompatibilities between Prism 0.25.0 and 0.26.0 #12856

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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