Rootroute ruby language pages

The Ruby Language FAQ: Extension library Next Previous Contents

10. Extension library

10.1 How can I use Ruby interactively?

You can try using irb. The following is paraphrased from Goto Kentaro (Gotoken), and originally appeared in ruby-talk:444.

  1. Get the latest tarball of irb from the contrib directory in the Ruby archive.
  2. Extract the irb directory tree.
  3. Add the location of the irb/ directory to the $RUBYLIB environment variable
  4. Make a symbolic link from $RUBYLIB/irb/irb.rb to a file called irb somewhere in your path.
  5. chmod +x $RUBYLIB/irb/irb.rb
  6. Possibly use rehash to tell your login shell about the new command.
  7. Type irb

If the readline extension module works with your interpreter, it makes irb a lot more fun to use.

There is also a simple program, eval, in the samples/ directory of the Ruby distribution. It lets you enter expressions and view their values. You can copy eval into the site_ruby directory in the Ruby tree, and then invoke it using:

  
ruby -r eval -e0

10.2 Is there a debugger for Ruby?

There is a gdb-like debugger for Ruby.

  
  ruby -r debug your_program

10.3 How can I use a library written in C from Ruby?

Of all the scripting languages, Ruby is probably the easiest to extend. There are no problems with reference counting and variable types, and very few interfaces to learn. In fact, C code used to extend Ruby often ends up looking surprisingly like Ruby code itself.

First, get the Ruby source distribution and read README.EXT. This is a good document, not only if you're writing an extension library, but also if you want to understand Ruby more deeply.

Next, have a look at the source of the interpreter itself, and at the various supplied extensions in the ext/ directory. You'll also find good examples under contrib/ on the Ruby ftp sites.

10.4 Can I use Tcl/Tk interface in Ruby?

There are two interfaces to Tcl/Tk included in the standard distribution. One is under ext/tcltk/ and loaded with require "tcltk". The syntax is very close to that Tcl, which is passed to Tcl interpreter. Unfortunately, the description for this library is written in Japanese.

The other is under ext/tk/ and loaded with require "tk". Its syntax closer to the style of the Tk interface provided by the Perl and Python interfaces.

10.5 Tk won't work.

Your Tk version may be old, try a newer version.

10.6 Can I use gtk+ or xforms interfaces in Ruby?

You'll find ruby-gtk-x.xx.tar.gz and ruby-forms-x.x.tar.gz under contrib/ in ftp sites.

10.7 How can I do date arithmetic?

A Time object can express only the dates between Jan 1, 1970 and Jan 19, 2038.

Two standard extension library modules are provided: require "date", which is simple and uses the English calendar, and require "date2", which is more general purpose.

Also see sample/cal.rb.


Next Previous Contents