Skip to content

Commit

Permalink
CI was failing for 1.9.2 and 1.9.3. This is due to
Browse files Browse the repository at this point in the history
  • Loading branch information
benoittgt committed May 18, 2019
1 parent 12bca28 commit 35cdf7b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gemfile
Expand Up @@ -30,8 +30,10 @@ end
# allow gems to be installed on older rubies and/or windows
if RUBY_VERSION < '2.2.0' && !!(RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/)
gem 'ffi', '< 1.10'
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'
# ffi dropped Ruby 1.8 support in 1.9.19
# ffi dropped Ruby 1.9 support in 1.11.0
gem 'ffi', '< 1.9.19'
else
gem 'ffi', '> 1.9.24' # prevent Github security vulnerability warning
end
Expand Down

0 comments on commit 35cdf7b

Please sign in to comment.