Skip to content

Commit

Permalink
pin FFI to < 1.17 for Ruby 2.7
Browse files Browse the repository at this point in the history
FFI 1.17 needs rubygems 3.3.22+, which is Ruby 3.0+ only
  • Loading branch information
evgeni committed Nov 12, 2024
1 parent 2242c2c commit 53eadf5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ gemspec

gem 'gettext', '>= 3.1.3', '< 4.0.0'

# FFI 1.17 needs rubygems 3.3.22+, which is Ruby 3.0+ only
gem "ffi", "<1.17" if RUBY_VERSION < '3.0'

group :test do
gem 'rake'
gem 'thor'
Expand Down

0 comments on commit 53eadf5

Please sign in to comment.