zw963 (Wei Zheng) wrote in #note-6: > zw963 (Wei Zheng) wrote in #note-4: > ... Hi, this issue get workaround by looksee gem, so, it works now. Thanks.zw963 (Wei Zheng)
When work with ruby 3.1.X, [looksee](https://github.com/oggy/looksee) gem could not display color character correct in new version IRB, as you can see as following: ``` ^[[1;37m[Roda::RodaPlugins::Sprockets::Task instance]^[[0m ^[...zw963 (Wei Zheng)
chrisseaton (Chris Seaton) wrote in #note-2: > I've proposed some new specs to clarify something you might be confused about. > ... Yes, that is my mistake, thank you very much. zw963 (Wei Zheng)
Please check following IRB example which can be reproduce on ruby 3.1.0 ```rb 3.1.0 :012 > defined? String.instance_method(:abcdefg) => "method" 3.1.0 :013 > defined? String.instance_method(:abcdefg111111111111) => "method" 3...zw963 (Wei Zheng)
jeremyevans0 (Jeremy Evans) wrote in #note-7: > maximecb (Maxime Chevalier-Boisvert) wrote in #note-6: > ... Just want to mention, When build emacs editor from source, it will check the available feature when do ./configure, if one fea...zw963 (Wei Zheng)
> I think Rust should be treated like OpenSSL. If you build Ruby without OpenSSL, Ruby doesn't download OpenSSL for you, it just doesn't build the openssl extension. Similarly, if you build Ruby without Rust, Ruby just won't build yj...zw963 (Wei Zheng)
mame (Yusuke Endoh) wrote in #note-1: > ``` > ... Yes, i see now, but this behavior is a little oddness, from programming language perspective, this default behavior not good. e.g. i add a binding.irb, like this, it so strange. ...zw963 (Wei Zheng)
I will describe how this bug happen for me. 1) I have code like this at first, it works! ```rb type = 'aaa' case type when 'aaa' x = 100 p x when 'bbb' x = 100 p x end # => 100 ``` 2) Because the code in w...zw963 (Wei Zheng)