Interactive Ruby Shell (IRB) is a shell for programming in Ruby. The program can be launched from a command prompt and allows the execution of Ruby commands line by line.

learn more… | top users | synonyms

0
votes
1answer
41 views

watir-webdriver functions do not execute as a script but works on the interactive ruby shell

I am trying to write automated scripts for a web application using watir. There is a slider in the UI, which has a range from 1 to 11. It is a horizontal div. So, if you press the right arrow key, ...
-2
votes
1answer
20 views

Options to learn in Ruby besides IRB and FXRI [closed]

Was wondering uses other options to test their coding lines (i'm very new to ruby) in windows. For some reason fxri does not work in the later versions and i dont like using irb. (i used the 1 click ...
-1
votes
1answer
43 views

Why doesn't assigning a variable to an array yield expected results in Ruby?

Using IRB, I tested the following: C:\Pickaxe>irb irb(main):001:0> list_of_strings = %w{ a list of strings in an array } => ["a", "list", "of", "strings", "in", "an", "array"] ...
0
votes
1answer
48 views

NameError: undefined local variable or method in irb

I am using ruby 1.9.2 with irb and I keep getting the following error message: NameError: undefined local variable or method `ex1' for main:Object from (irb):4 from ...
1
vote
1answer
28 views

How do you pipe input and output to and from an interactive shell?

I am trying to build an application that enables the user to interact with a command-line interactive shell, like IRB or Python. This means that I need to pipe user input into the shell and the ...
0
votes
0answers
7 views

Hirb pager creates files with names as code snippets when pasting code in irb

I have Hirb enabled in my .irbrc. I pasted the following code snippet into irb. rows = Row.all start_row_id = rows[0].id The first line returns sufficient number of rows to kick off the Hirb ...
2
votes
1answer
81 views

What's the point of an interactive Ruby subshell?

Starting up an interactive Ruby shell in the Terminal ('irb'), one can continue to open up irb subshells endlessly. What's the point of this?
0
votes
0answers
15 views

Pasting certain text into irb crashes console window

When I paste in the following text by itself it crashes the console window. In the Taskmanager 'cmd.exe' still shows up, but I've noticed in the event view an Application Error for 'conhost.exe' at ...
1
vote
0answers
14 views

Can the Rails Console be reloaded when release symlink changes?

I am running rails on a Capistrano-based deployment setup. I prefer to leave rails console sessions open in tmux, and have them persistently available. Capistrano puts the application in a director ...
0
votes
2answers
43 views

ruby cast method input variable as string in ruby irb

How would I coerce the behavior of irb to treat variable identifiers as strings when used in method signatures? I am trying to create a irb based calculation tool and I want to reduce the typing of ...
-2
votes
2answers
29 views

Why does ruby irb becomes unusable if array not properly defined

If an array is improperly defined, it seems to render irb unusable. Or does it? See example below: irb(main):003:0> set = ['a] irb(main):004:1' irb(main):005:1' g irb(main):006:1' q ...
0
votes
1answer
52 views

Ruby's irb with [what?] is equivalent to the Python Shell with IDLE? (On Windows, if relevant.)

This has been a surprisingly hard question to find an answer to. (A few questions seem to be asking something at least similar, like: Ruby console alternative for IRB (Windows) IDLE like ...
5
votes
2answers
105 views

Can not use variable in IRB after var = Watir::Browser.start 'url'

1.9.3-p327 :001 > require 'watir-webdriver' => true 1.9.3-p327 :002 > b = Watir::Browser.new Then firefox starts and I can do nothing. My IRB does not allow me to enter new commands. ...
0
votes
1answer
59 views

How to do a simple `Date.today` in my Rails console

When I execute the command Date.today in my rails command, I get the following error: I can't do a simple Date.today in my Rails console ruby-1.9.2-p180 :026 > >> require 'date' => ...
0
votes
0answers
40 views

IRB subsession exit hangs if IRB::Abort/CTRL+C received previously

I created a script to log IRB input & output, per assigned task (in this case, a support ticket to development). This script retains a few select instance variables, but wipes the rest. I wanted ...
0
votes
0answers
52 views

Heroku console giving Encoding::UndefinedConversionError

Running a heroku console with heroku run console all commands returning UTF-8 characters (like german Umlauts) will result in the following error: irb(main):004:0> Play.all[-2] Play Load ...
2
votes
2answers
69 views

Best way to stop load script execution in Ruby on Rails's IRB

Looking for the best way to exit a loaded script in Ruby on Rails's IRB. Kernel.exit & Kernel.abort will pop you out of the IRB session altogether. Ideally, this would happen on some conditional ...
-7
votes
2answers
36 views

Did I break my version of ruby?

I was doing some math stuff in my console with lat/lon, trying to get the logic right for a distance formula. I got it, but now every time I try and divide an integer by a larger integer, it returns ...
1
vote
1answer
60 views

run IRB from Notepad++

From one of the stackoverflow post RubyPrompt: I have seen that we can run IRB from Notepad++ also. The last answer from the above post I am talking about. Can anyone out there help me about the ...
0
votes
2answers
49 views

Why is my regular expression skipping the dot instead of matching the string before it?

I was trying to work out a regular expression in IRB and got some unexpected output. The goal was to match everything up until the last dot in a FQDN. So, for example, if I was trying to match the ...
0
votes
2answers
71 views

Ruby method doesn't seem to work

I have a ruby script in which I would like to encapsulate variable initialization/reset in a method. I created the below method for variable resetting. But in irb, this method runs fine but when I ...
0
votes
1answer
38 views

irb command history keystroke in irb on eshell

How can I access the command history when running irb in the emacs eshell? When I run irb at the command line outside of emacs, I can use the up arrow to get the last command or ctrl-r to search the ...
0
votes
1answer
31 views

module_function in an IRB session?

I've some troubles to understand why the Module#module_function is missing in the following irb session ? > class << self # open singleton for the session's object instance > p ...
0
votes
1answer
64 views

How do I Quit IRB from the command line? (Using terminal on mac)

Basically, I'm typing along just fine in terminal, using IRB to run ruby commands: 2.0.0-p0 :014 > bank_account.withdraw(2222) => -1222 But sometimes I accidentally miss out a quotation ...
0
votes
1answer
50 views

Keep script variables in scope when loading from irb

When I execute a script in IPython, by using run myscript.py, the names from the script are then available in the interactive interpreter for me to experiment with further. In irb this doesn't seem ...
1
vote
1answer
26 views

Is there an IRB equivalent of .bash_profile/.bash_rc/.profile?

Is there a configuration file that is loaded every time an IRB session is started? For example I'd like to be able to require certain libraries and enable them for every session in IRB.
0
votes
1answer
153 views

loading environment variables in rails console

I think this is a little easy question! I'm using .env file to keep all my environment variables. BTW i'm using foreman. Unfortunately, these environment variable are not being loaded when running ...
1
vote
1answer
72 views

How to use the below description mentioned symbols?

Where are these symbols defined, and what are they used for? :w2_end :w2_beg :w1_beg :w1_end I found those in my IRB by using the line Symbol.all_symbols . My Ruby version and IRB versions are: ...
-6
votes
2answers
75 views

Why is it helpful to use irb (as opposed to a GUI-based testing method) when coding with Ruby?

I've read that the purpose of irb when programming with Ruby is to help test code in real-time. I've learned HTML and CSS prior to this, and at that time I was able to test my code by simply opening ...
0
votes
1answer
232 views

“NameError: uninitialized constant UserAgent” when using Watir

I'm new to ruby, I seem to have successfully installed watir-webdriver and webdriver-user-agent gems, but when I was trying to follow the instructions here I've stumbled. How to proceed? >> ...
0
votes
2answers
53 views

Does pry or irb allow you to work interactively from inside a block?

I know that pry allows you to "cd" into other scopes. pry(main)> cd Object pry(Object)> ls constants: ARGF Encoding GC NIL ...
5
votes
1answer
84 views

Why Module.methods() and respond_to? works differently in irb than in script?

I'm trying to use reflective methods in Ruby, and running into a behavior that I find really surpising. The following examples seems to work differently in IRB and when called a ruby script: ...
1
vote
3answers
88 views

Debugging ruby code in irb/pry

Is there a way to find out more information of what a method does in irb. Example would be in irb/pry I could do something like this: strigy_object = "I am string" Now if i type stringy_object. ...
1
vote
1answer
43 views

How to experiment with rspec from within irb

For example, I want to say b = double("book") in irb and play with the result. In irb if I say require 'rspec' b = double("book") I get an error. Ideas?
3
votes
1answer
162 views

IRB - Ruby 1.9.x hash syntax: {if: true} is not equal to {:if => true}

Long story short, I was writing a method that included an options argument, that will do certain stuff if the value for the key :if, evaluated to true. When I trying the hash in IRB using the new ...
0
votes
2answers
296 views

selenium-webdriver error for just opening IE

So, I am using - gem 'watir-webdriver', '0.5.4' gem 'selenium-webdriver', '2.21.1' and JRuby - 1.6.5 All I am trying to do is open IE. I have IE version 8. >> require "rubygems" => true ...
1
vote
2answers
73 views

Why doesn't “Hello #{#'world'}” return anything?

My IRB console output. 1.9.3p385 :005 > "Hello #{#'world'}" 1.9.3p385 :006 > Shouldn't this return Hello? What is that happening? Is this an error?
2
votes
4answers
73 views

Stack overflow when playing with Ruby singleton methods in IRB

As the subject states, I experienced a stack overflow when playing with singleton methods in IRB. Below is the code I've tried: c= C.new class << c def class "my class is #{self.class}." ...
4
votes
1answer
115 views

How to use RSpec expectations in irb

I'd want to use [1,2,3].should include(1) in irb. I tried: ~$ irb 1.9.3p362 :001 > require 'rspec/expectations' => true 1.9.3p362 :002 > include RSpec::Matchers => Object 1.9.3p362 ...
1
vote
0answers
54 views

automatic save and reload ruby objects between irb sessions

It is convenient that irb can save my execution history, accessible later via CTRL-R lookups. Question, using my .irbrc or otherwise, is there a way to have irb save (at exit, or after every command) ...
0
votes
1answer
89 views

How to escape/exit in IRB after entering code that requires more input/does not execute right away [closed]

A particular line of code results in no output, and IRB exits out of the >> prompt. I am not looking to exit IRB, but just to exit to a state preceding the line of code that caused the >> ...
3
votes
1answer
83 views

Why does gets return zero in Ruby

I have a simple method def save_logline print "What's the name of the movie" movie_name = gets.strip print "And what is your precious logline?" logline = gets.strip File::open(movie_name + ...
2
votes
5answers
79 views

Hash inspection in IRB?

I have a hash: hash = { test: 'Test' } If I am in an irb session and I enter hash, it outputs the content of the hash: { :test => 'Test' } What method is being invoked on the variable hash ...
0
votes
1answer
55 views

My IRB is not producing the output,got blanked after clicking on the ENTER [closed]

When I tried to do some operations on the line m = %r(.)(.)(\d+)(\d)/.match("THX1138.") (taken from the doc ) nothing coming to the screen as below: > from the IRB went out and \ came and the ...
0
votes
4answers
54 views

Why am I getting objects printed twice?

When I am in irb or in rails and I create some iteration with each, I am getting the whole struct printed again in my terminal or inside the browser. Example: a = [1,2,3,4] a.each do |number| puts ...
0
votes
0answers
87 views

Uninitialized Constant Fog Error

Getting this error when running trying to connect to openstack server using fog via IRB. NameError: uninitialized constant Fog from (irb):2 from ...
2
votes
4answers
88 views

Running multiple commands in irb

I am using Mechanize to crawl a site that requires login. The following code logs me in. require 'mechanize' agent = Mechanize.new agent.get 'http://www.specialsite.com' agent.page.form.txtEmail = ...
2
votes
3answers
91 views

How to go back and fix syntax in IRB?

Whenever I accidently type the wrong syntax in IRB, I can never go back and fix it and it keeps giving new command lines. For example: 1.9.3p194 :035> justin.find{|key,value|key=='phone_number ...
2
votes
1answer
78 views

What could cause a LoadError when requiring taglib-ruby in IRB?

Have gone through similar questions here, but have not been able to get this working. I have RVM installed, and am trying to use a gemset I've set up for a Rails project to run a simple .rb file. ...
1
vote
1answer
75 views

Is there a way to control tab size in Ruby?

On the console, when I output a string like this: puts "\tFOOBAR" it seems to insert 8 spaces before the FOOBAR. Is there any way to control this tab size?

1 2 3 4 5 8