[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[ANN] irb-history 1.0.0: Persistent, shared Readline history for IRB

Sam Stephenson

6/18/2005 6:36:00 AM

irb-history 1.0.0
-----------------
irb-history gives IRB persistent, shared Readline history by way of
Distributed Ruby (DRb). What does that mean?

Persistent

irb-history-server stores its history in YAML in a file of your choice (the
default is ~/.irb_history).

Shared

Load the irb-history client in your ~/.irbrc, and you'll instantly have
access to the irb-history store. Every line you type is sent to the server
and will appear in other clients' histories immediately.

Because irb-history uses DRb, you can share your history with other IRB
sessions:

* on the same computer
* on other computers on your local network
* on computers connected to the Internet (fun, but not recommended :))


Installation and usage
----------------------
It's a simple process:

1. Install the gem.
$ gem install irb-history

2. Start a history server listening on 127.0.0.1, port 26501 (see the
irb-history-server documentation for more options).
$ irb-history-server -d

Note: If you wish to use irb-history on a network, you'll need to
pass the -h flag with an appropriate address to listen on.

3. Add three lines to your ~/.irbrc.
require 'rubygems'
require 'irb/history'
IRB::History.start_client

This connects to the history server on 127.0.0.1, port 26501. If you
need to specify a different host and/or port, just pass a DRb URI to
start_client. For example:
IRB::History.start_client 'druby://galt:4000'
connects to the history server on host galt, port 4000.


Source code
-----------
Check out the darcs repository:
$ darcs get http://dev.conio.net/repos/i...
RDoc documentation:
http://irb-history.rubyforge...


irb-history is freely distributable under the terms of a MIT-style license.
Enjoy!

--
Sam Stephenson
http://...


1 Answer

Andrew Walrond

6/18/2005 8:56:00 AM

0

On Saturday 18 June 2005 07:36, Sam Stephenson wrote:
> irb-history 1.0.0
> -----------------
> irb-history gives IRB persistent, shared Readline history by way of
> Distributed Ruby (DRb). What does that mean?
>

One less thing on _my_ wishlist :)

I'll be testing this out asap!

Andew Walrond