irb
irb copied to clipboard
interactive Ruby
If I paste this into IRB then I cannot ever exit: ``` 10.times.each do Thread.new do while true puts "." end end end ``` If i hit CTRL+C I can...
Recently irb(1) man page was added to this repository. But it is not included in gem of 1.1.0.pre.3. Please consider including it in that of 1.1.0 release. An example of...
The document (doc/irb/irb.rd.ja) says `chws` or `irb_change_workspace` command with no arguments changes the current workspace to the home workspace (i.e. the main object assigned to `self` when IRB begins). This...
## Description In a rails console, running the following command fails `measure = Measure.first` But the following succeeds `m = Measure.first` The error message of the `measure = Measure.first` command...
Improve error message of #958 ``` irb(main):001> measure = 1 undefined method `extract_ruby_args=' for module IRB::Command (NoMethodError) IRB::Command.extract_ruby_args = 1 ^^^^^^^^^^^^^^^^^^^^ Maybe IRB bug! ``` This is not a bug....
## Description Hello. :wave: With the new [extension](https://github.com/ruby/irb/blob/master/EXTEND_IRB.md) support in IRB 1.13.0, would it be possible to add `IRB.conf[:HELPER_ALIASES]` like we have for command aliases? I ask, because the `HELPER_ALIASES`...
Document `cd object` and `cd ..` commands introduced in 1.14.0 by #971
Command colorization for `$`, alias of show_source was not good. This pull request improves it. - command name part: bold - command arg part: colorized as ruby code ## before...
To align with other command usage, and to reduce use of `ruby_args`, this pull request adds ```ruby measure on measure foo measure off time ``` and deprecates ```ruby measure :on...