Skip to content

Commit

Permalink
Merge pull request #2565 from rspec/upgrade-ffi-for-5-1
Browse files Browse the repository at this point in the history
Upgrade FFI now its safe to do so
  • Loading branch information
JonRowe authored Jan 25, 2022
2 parents fae1360 + 0672ddc commit 36ce639
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ end

gem 'capybara'

# Until 1.13.2 is released due to Rubygems usage
gem 'ffi', '~> 1.12.0'
if RUBY_VERSION.to_f >= 2.3
gem 'ffi', '~> 1.15.5'
else
gem 'ffi', '~> 1.12.0'
end

custom_gemfile = File.expand_path('Gemfile-custom', __dir__)
eval_gemfile custom_gemfile if File.exist?(custom_gemfile)
Expand Down

0 comments on commit 36ce639

Please sign in to comment.