1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/reline] Use vterm 0.0.5 or newer on Unix like OSes because suppresses SEGV

7562cf3b5f
This commit is contained in:
aycabta 2021-04-03 20:17:34 +09:00
parent 281c6f5055
commit 47abb70234

View file

@ -23,5 +23,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'test-unit'
is_unix = RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
spec.add_development_dependency 'vterm', '>= 0.0.5' if is_unix
spec.add_development_dependency 'yamatanooroti', '>= 0.0.6'
end