Project

General

Profile

Actions

Feature #17859

open

Start IRB when running just `ruby`

Added by deivid (David Rodríguez) almost 3 years ago. Updated about 1 year ago.

Status:
Open
Assignee:
-
Target version:
-
[ruby-core:103801]

Description

Compare python:

$ python
Python 3.8.3 (default, Jul  8 2020, 16:49:12) 
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 

To ruby:

$ ruby
# just hangs

I think firing up a console it's a good default behaviour for beginners.


Related issues 1 (1 open0 closed)

Related to Ruby master - Misc #20259: Proposal to add "ruby --irb" and / or "ruby --start-irb" to start irb (interactive ruby) via ruby (bin/ruby), via the commandlineOpenActions

Updated by jeremyevans0 (Jeremy Evans) almost 3 years ago

I'm against this. I often run ruby, and input code on standard input to get results, without wanting to use irb. I was literally doing this minutes ago with @ko1 (Koichi Sasada) to debug an issue.

Updated by chrisseaton (Chris Seaton) almost 3 years ago

A compromise could be a warning - TruffleRuby warns when standard in is a terminal, but otherwise works as normal. As TruffleRuby is often used in a polyglot context, we do find this trips people up a lot if they aren't used to Ruby. And as it's just sitting there silently waiting for input, they've no idea what's going on and they wait.

[ruby] WARNING: truffleruby starts IRB when stdin is a TTY instead of reading from stdin, use '-' to read from stdin

Updated by jaruga (Jun Aruga) almost 3 years ago

I think firing up a console it's a good default behaviour for beginners.

I can understand your intent. But could you tell us more about the context?

In my experience, if I do not understand a command, I tend to run [command] --help or man [command], not the [command]. Because running [command] could be dangerous. I hope a beginner will learn not to run [command] without --help when they do not know the command.

To perl

$ perl
# just hangs

I feel it depends on how much the following use case with Ctrl+D is important.

$ ruby
p "abc"
Ctrl+D
"abc"

Even when ruby will be like python like your suggestion, I expect that the following use case still works.

$ ruby <<EOF
> p "abc"
> EOF
"abc"

Updated by Eregon (Benoit Daloze) almost 3 years ago

+1 from me, I think it's convenient and to some extent becoming expected for modern dynamic languages (JS, Python, R, Scala and more do it).

TruffleRuby already does, and so does Rubinius.
I think the warning is a nice way to document that one can use ruby - if they want the current behavior even when STDIN is a TTY.

Personally I never use the current behavior of $ ruby when STDIN is a tty.
I find -e to be much more practical for those cases, and if I need more space using a file feels like the right answer.
I often do xsel -b | ruby though, but that would still work since STDIN is not a TTY (same for @jaruga's shell heredoc case).

Updated by deivid (David Rodríguez) almost 3 years ago

I normally use -e too for short code evaluation and a REPL for longer sessions.

I can understand your intent. But could you tell us more about the context?

There's not really much context, I just noticed how python works and liked it, so thought about suggesting it for Ruby.

Updated by duerst (Martin Dürst) almost 3 years ago

I agree it's convenient, would be really great to have it. I was thinking about proposing it, too.

@jaruga (Jun Aruga): People definitely shouldn't run unknown commands, but Ruby isn't an unknown command, it's a friendly programming language :-). And adding this will make Ruby more friendly. Usually, Python is more obnoxious ("Use exit() or Ctrl-D (i.e. EOF) to exit" when typing "exit" being the most famous example), and we should make sure we keep it that way.

@chrisseaton (Chris Seaton): A message like this would be a good idea, but it could be made a lot shorter, e.g. "Starting IRB; use 'ruby -' to read from standard input".

@jeremyevans0 (Jeremy Evans): My guess is you are in a (quite small) minority. It takes a very steady hand to input code that way (or copy-paste). Pasting code into irb may also work, as will using "ruby -", which is just two more keystrokes away.

Updated by jaruga (Jun Aruga) almost 3 years ago

@david (david he) okay, thanks for sharing the context.

@duerst (Martin Dürst) I agree that the "friendly" is important for Ruby, according to the Ruby official website logo "Ruby - A PROGRAMMER'S BEST FRIEND".

We can implement the alternative by ruby -, or we can continue to use the case STDIN is not TTY as @Eregon (Benoit Daloze) said. I can not find any reason not to accept @david's suggestion. So, +1 from me.

Updated by xtkoba (Tee KOBAYASHI) almost 3 years ago

This might be rather off-topic, but my main concern is that IRB takes much longer time before showing its first prompt, than its counterpart in Python.

$ time echo | irb
Switch to inspect mode.



real    0m0.622s
user    0m0.567s
sys     0m0.052s

$ time python
Python 3.9.5 (default, May 13 2021, 12:09:20)
[GCC 11.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> ^D

real    0m0.077s
user    0m0.059s
sys     0m0.014s

I would not take any objection to this suggestion if IRB initialization were x10 faster.

(My topic is probably related to #17684.)

Updated by zverok (Victor Shepelev) almost 3 years ago

Two observations from my experience with Python:

  1. Python (in the modern default installation, I believe) has two consoles: python which loads instantaneously, has no syntax highlight, and very simplistic autocomplete; and ipython with rich autocomplete, cool syntax highlighting and whatnot, but takes some time to load. (See also @xtkoba's comment above about loading time)
  2. When starting to work with Python after Ruby, I was constantly bugged with undesired interpreter start, most notably when running python -v (trying to ask "what version of Python do I have?", with -v being almost universal shortcut for it, but instead having a full screen of gibberish, because it runs interpreter in verbose mode). It should be avoided.

Updated by naruse (Yui NARUSE) almost 3 years ago

I think we can switch based on gettty() isatty().

Updated by jaruga (Jun Aruga) almost 3 years ago

Is going to put an end to the irb versus pry war?

@sawa (Tsuyoshi Sawada), I might be able to understand your concern. However I want to think that a discussion is a peaceful process to find a solution, fixing some frictions between us. In my humble opinion, the word "war" and a structure of A vs B might be not a proper metaphor in this case. It seems that @zverok's suggestion to use the lightweight version irb (like $ python) for $ ruby (STDIN is TTY) and continue to use the current irb (like $ ipython) is a inclusive solution.

Updated by jaruga (Jun Aruga) almost 3 years ago

I would not take any objection to this suggestion if IRB initialization were x10 faster.

@xtkoba (Tee KOBAYASHI) Could you tell us why you have the concern or mind about the speed of the IRB in case that it is called by $ ruby? Are you considering a case that the IRB is unintentionally or wrongly called in $ ruby by users? Related to #17684, it might be a good idea to use the irb light weight version with --disable-gems or an equivalent thing to load a few things in $ ruby to solve your concern.

Updated by xtkoba (Tee KOBAYASHI) almost 3 years ago

jaruga (Jun Aruga) For me the slowness of IRB is just annoying for debugging purposes. Putting - after the command every time would be distracting. If this proposal is accepted leaving the slowness of IRB as it is, I would write a wrapper script that makes ruby command from a terminal without any arguments not invoke IRB.

It is true that gems-enabled ruby is also slow, but not slower than IRB:

$ time ruby --enable-gems -e "puts 'hello world'"
hello world

real    0m0.212s
user    0m0.183s
sys     0m0.026s

Updated by jaruga (Jun Aruga) almost 3 years ago

@xtkoba (Tee KOBAYASHI) Ah I can understand the concern for the debugging purpose. You might be used to being using $ ruby to copy & paste a ruby code and do Ctrl+D.

I had the following idea for your concern, chatting with people. That is to set an alias on your environment for the debugging purpose. It's like your wrapper script.

For example,

alias r='ruby -'

or

alias R='ruby -'

Then

$ r
p "abc"
Ctrl+D
"abc"

It's easy isn't it? But you need to be used to being the new command.

Updated by nobu (Nobuyoshi Nakada) almost 3 years ago

deivid (David Rodríguez) wrote in #note-5:

I normally use -e too for short code evaluation and a REPL for longer sessions.

I use -e too, but often people mix single- and double-quotes in a same code, then I have to feed it via stdin.

Updated by rubyFeedback (robert heiler) about 1 year ago

I don't have a strong opinion on the topic. I am fine either way.

Both seem to have a valid point of view, e. g. the "it is convenient"
approach where newcomers can just type "ruby" and it would enter
"interactive ruby", like "python" would start the python REPL. This is
kind of true, that can be convenient. But, as stated, I don't really have
any particularly strong pro or con on it, be it a change, or no change.

I wanted to comment on two other statements, though:

(1) The "it may be slow". Well, one could focus on a "bare irb" or
"base irb" behaviour, such as zverok showed (e. g. "python which
loads instantaneously, has no syntax highlight, and very
simplistic autocomplete"). People could modify the behaviour
via irbrc and load add-ons. I once even loaded all my local
gems by making use of Thread.new {}, for loading all of these gems,
since some took some time, and my basic idea was that I could just
"insta-start" irb, and type commands at once, without having to wait,
while background loading could proceed either way still. It did not
seem to work quite in the way how I thought it would be, so I switched
back to a "minimal IRB" setup again, where I really just start the things
I need on a daily basis, and load other things only when I need them.
So basically from "load all my gems", to "load only the code I really
need on a daily basis".

I don't know whether irb is slow or not compared to python startup,
but I feel that this question can be approached, even if it is just
a mini-irb with less functionality. The main question should be
whether it is worth to change the default behaviour, e. g. if
more newcomers would think this is better, than typing a separate
command (e. g. irb). That should be the primary question, the other
questions are secondary to that one, I would think.

(2) In regards to the "war", let's call it rather a "difference in approach"
(irb versus pry). The way how I see it irb adopted what seemed
useful from pry, even before the later rewrite that took place,
without necessarily going the full introspection route that pry
adopted from the get go. So I see these two more as a separate projects
really, but irb learning from pry more than pry would learn from irb
(since it has a slightly different use case).

I don't think this is a bad thing. If anyone remembers, there was a
time we did not have BasicObject, and if memory serves me well
_why was important in suggesting it, as he was testing an interactive
ruby on a website, and there having some "vanilla state" seemed
important (probably also with SAFETY or what old security checks
were still in place, to get it to work in a browser; of course since
then we can do so; I think there is a project on github that does
that, hsbt contributed to it if I remember correctly, but I forgot
the name of that project).

Actions #17

Updated by hsbt (Hiroshi SHIBATA) 5 days ago

  • Related to Misc #20259: Proposal to add "ruby --irb" and / or "ruby --start-irb" to start irb (interactive ruby) via ruby (bin/ruby), via the commandline added
Actions

Also available in: Atom PDF

Like1
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0