Skip to content

Commit

Permalink
[expectations] Deal with new ffi Ruby version requirement (rspec/rspe…
Browse files Browse the repository at this point in the history
…c-expectations#1115)

CI was failing for 1.9.2 and 1.9.3. This is due to
ffi/ffi#683

Related:
- ffi/ffi#699

---
This commit was imported from rspec/rspec-expectations@dbf72e5.
  • Loading branch information
benoittgt authored and JonRowe committed Oct 7, 2019
1 parent a21e6de commit 0504c43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rspec-expectations/Gemfile
Expand Up @@ -34,6 +34,8 @@ elsif RUBY_VERSION < '2'
gem 'ffi', '< 1.10' # ffi dropped Ruby 1.8 support in 1.9.19
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.24' # prevent Github security vulnerability warning
end
Expand Down

0 comments on commit 0504c43

Please sign in to comment.