Skip to content

Commit

Permalink
[support] Merge pull request rspec/rspec-support#376 from rspec/ffi_r…
Browse files Browse the repository at this point in the history
…uby_1_9

Deal with new ffi Ruby version requirement

---
This commit was imported from rspec/rspec-support@4b45513.
  • Loading branch information
JonRowe committed Jun 10, 2019
1 parent 4a5dac3 commit 9815832
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rspec-support/Gemfile
Expand Up @@ -24,6 +24,8 @@ if RUBY_VERSION < '2.0.0' && !!(RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|min
gem 'ffi', '< 1.9.15' # allow ffi to be installed on older rubies on windows
elsif RUBY_VERSION < '1.9'
gem 'ffi', '< 1.9.19' # ffi dropped Ruby 1.8 support in 1.9.19
elsif RUBY_VERSION < '2.0'
gem 'ffi', '< 1.11.0' # ffi dropped Ruby 1.9 support in 1.11.0
else
gem 'ffi', '~> 1.9.25'
end
Expand Down

0 comments on commit 9815832

Please sign in to comment.