Skip to content

Commit

Permalink
Add new gems
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahchen6 committed Nov 8, 2024
1 parent 0b69efa commit 69bf65e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,23 @@ end
group :dev do
gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java'
end

# `1.17.0` provides broken RBS type definitions
# https://github.com/ffi/ffi/blob/master/CHANGELOG.md#1170rc1--2024-04-08
#
# TODO: Remove this once the issue is resolved: https://github.com/ffi/ffi/issues/1107
gem 'ffi', '~> 1.16.3', require: false

# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0.
# Pin strscan to the latest commit sha.
#
# TODO: Remove strscan specification once v3.1.1 is released.
if RUBY_VERSION.start_with?('3.4.')
gem 'strscan',
git: 'https://github.com/ruby/strscan',
ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f'
# No longer bundled by default since Ruby 3.4
gem 'base64'
gem 'bigdecimal'
gem 'mutex_m'
end

0 comments on commit 69bf65e

Please sign in to comment.