mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/irb] Check WITH_VTERM env to add vterm gem as dependency
https://github.com/ruby/irb/commit/23c8b73cb1
This commit is contained in:
parent
2fcae4f90a
commit
bacb646169
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
|
|||
spec.add_dependency "reline", ">= 0.1.5"
|
||||
spec.add_development_dependency "bundler"
|
||||
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 'vterm', '>= 0.0.5' if is_unix && ENV['WITH_VTERM']
|
||||
spec.add_development_dependency 'yamatanooroti', '>= 0.0.6'
|
||||
spec.add_development_dependency "rake"
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue