Using the Interactive Ruby Shell to troubleshoot gems
Learn how to use the Interactive Ruby Shell to troubleshoot your Ruby gem loading and configuration.
The Interactive Ruby Shell (irb) is a tool that enables you to interactively run Ruby programs and statements from the command line. This article describes how to use the Interactive Ruby Shell to troubleshoot Ruby gem loading and configuration.
Basic Interactive Ruby Shell (irb) usage
To start irb, log in to your account using SSH, and then type the following command:
irb
TipTo debug a specific Ruby program, type the following command, where program.rb represents the name of the program you want to run:
irb program.rbThe default irb command prompt appears:
irb(main):001:0From the irb prompt, you can run any Ruby statement and see the result immediately. For example, to view the value of the $0 global variable (which stores the name of the current Ruby program being run), type the following command:
p $0To exit irb, type the following command:
exitTroubleshooting Gems
You can use irb to verify the Ruby environment is set up correctly for your gems. To do this, follow these steps:
-
At the command prompt, type the following command to start irb:
irb -
At the irb prompt, type the following commands. Replace gem_name with the name of the gem that you want to test:
require 'rubygems' require 'gem_name'ImportantFor Ruby version 1.8, you must require rubygems before any other gems.
-
You receive one of the following results:
-
=> trueThis result indicates that the environment is set up correctly, and Ruby is able to load the specified gem.
-
LoadError: no such file to load -- gem_nameThis result indicates that the environment is not set up correctly, and Ruby is unable to load the specified gem.
-
-
If you receive a LoadError message in step 3, type the following command:
p $LOAD_PATHThe $LOAD_PATH global variable stores an array that contains all of the directories Ruby searches when the load or require methods are called. Verify that the path to your gems is in $LOAD_PATH. If it is not, you must configure the GEM_HOME and GEM_PATH environment variables to ensure the gems load correctly.
TipFor step-by-step instructions about how to configure Ruby gems on a hosting.com account, please see this article.
More information
For more information about the Interactive Ruby Shell, please visit http://ruby-doc.com/docs/ProgrammingRuby/html/irb.html.
Related articles
Updated about 1 month ago
