Results 587 comments of MSP-Greg

I used the following for `test/support/reline.rb` on MinGW master ```ruby # frozen_string_literal: true require "reline" unless STDOUT.tty? && STDIN.tty? Reline.send(:remove_const, 'IOGate') if Reline.const_defined?('IOGate') Reline.const_set('IOGate', Reline::GeneralIO) Reline.send(:core).config.instance_variable_set(:@test_mode, true) Reline.send(:core).config.reset Reline.input =...

**EDIT:** Ruby 2.5, 2.6, & master are passing. Had to throw a few windows related fixes at it, not sure if all are needed. Maybe I'm missing something, but it...

> I thought so, but maybe I'm wrong You're correct. See https://github.com/ruby/ruby/tree/v2_6_0/lib/irb, note the `irb.gemspec` file. Hence, it is a default gem, but packagers can change all sorts of things....

Sometime soon, I'll try it with byebug and see how the tests do...

Off topic - JFYI https://bugs.ruby-lang.org/issues/15313

Yesterday morning I ran tests with reline & ruby-head, some issues. Haven't torn thru your code, how do I get typical --verbose test output? From my perspective, reline should work...

First thing I tried. Dots... IO.popen, Open3, etc. I've worked plenty with STDOUT & STDERR, but STDIN, no. I've tried tests from time to time also. Also, I said 'reline...

Duh. Looked at the code a bit ``` rake test --verbose ``` Back to frozen tests...

I worked a bit with reline using ruby-head, which I think is equivalent to reline master. Tests were intermittent, but sometimes all did pass. Used the following code for reline,...

Using something similar to the above, CI is passing on Windows using reline. I'm considering this to be on hold until a determination is made as to reline's UI compatibility...