[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Re: Ruby Console Library

David

10/24/2006 7:38:00 PM

On Wed, Oct 25, 2006 at 03:35:46AM +0900, Minkoo wrote:
> Does Ruby have the followings?
> - Pulldown menu library for Console
> - Scrollable Window for Console

ncurses-ruby:

http://ncurses-ruby.b...
http://raa.ruby-lang.org/project/ncu...

> The appearance of my program will be quite similar to mc(midnight commander)
> or aptitude(package manager of ubuntu), so any libraries related to the
> appearance of those program will be very helpful for me.

aptitude is written in ncurses (mc probably is too).

--
David Dooling

3 Answers

hemant

10/24/2006 7:51:00 PM

0

On 10/25/06, David <banjo@users.sourceforge.net> wrote:
> On Wed, Oct 25, 2006 at 03:35:46AM +0900, Minkoo wrote:
> > Does Ruby have the followings?
> > - Pulldown menu library for Console
> > - Scrollable Window for Console
>
> ncurses-ruby:
>
> http://ncurses-ruby.b...
> http://raa.ruby-lang.org/project/ncu...
>
> > The appearance of my program will be quite similar to mc(midnight commander)
> > or aptitude(package manager of ubuntu), so any libraries related to the
> > appearance of those program will be very helpful for me.
>
> aptitude is written in ncurses (mc probably is too).
>
> --
> David Dooling
>
>

Haven't used Highline myself..but seems to me...like a good
alternative for writing console based applications.


--
There was only one Road; that it was like a great river: its springs
were at every doorstep, and every path was its tributary.

hemant

10/24/2006 7:51:00 PM

0

On 10/25/06, hemant <gethemant@gmail.com> wrote:
> On 10/25/06, David <banjo@users.sourceforge.net> wrote:
> > On Wed, Oct 25, 2006 at 03:35:46AM +0900, Minkoo wrote:
> > > Does Ruby have the followings?
> > > - Pulldown menu library for Console
> > > - Scrollable Window for Console
> >
> > ncurses-ruby:
> >
> > http://ncurses-ruby.b...
> > http://raa.ruby-lang.org/project/ncu...
> >
> > > The appearance of my program will be quite similar to mc(midnight commander)
> > > or aptitude(package manager of ubuntu), so any libraries related to the
> > > appearance of those program will be very helpful for me.
> >
> > aptitude is written in ncurses (mc probably is too).
> >
> > --
> > David Dooling
> >
> >
>
> Haven't used Highline myself..but seems to me...like a good
> alternative for writing console based applications.
>
>
> --
> There was only one Road; that it was like a great river: its springs
> were at every doorstep, and every path was its tributary.
>

Sorry, forgot the link:

http://highline.rubyforg...

--
There was only one Road; that it was like a great river: its springs
were at every doorstep, and every path was its tributary.

Martin DeMello

10/25/2006 7:10:00 AM

0

On 10/25/06, David <banjo@users.sourceforge.net> wrote:
> On Wed, Oct 25, 2006 at 03:35:46AM +0900, Minkoo wrote:
> > Does Ruby have the followings?
> > - Pulldown menu library for Console
> > - Scrollable Window for Console
>
> ncurses-ruby:
>
> http://ncurses-ruby.b...
> http://raa.ruby-lang.org/project/ncu...

Looks unmaintained but might still be useful:

http://raa.ruby-lang.org/proj...

martin