[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

The Rubyw.exe Thread

R.E.

4/2/2007 4:17:00 PM

I've looked at the FAQ, Ruby Docs, and Google on how to fix rubyw.exe
for Win XP and there is no help at all. I've tried i've seen and nothing
works. I have downloed both the one step install version AND the ZIP
file version and in both cases rubyw.exe doesn't seem to work. Doesn't
execute at all.

I don't really mind using just ruby.exe for all of my programming but
just as ong as I can make Tk and windowing apps.

Can anyone help?

--
Posted via http://www.ruby-....

11 Answers

Ara.T.Howard

4/2/2007 4:22:00 PM

0

R.E.

4/2/2007 4:45:00 PM

0

unknown wrote:
> On Tue, 3 Apr 2007, R.E. wrote:
>
>> I've looked at the FAQ, Ruby Docs, and Google on how to fix rubyw.exe
>> for Win XP and there is no help at all. I've tried i've seen and nothing
>> works. I have downloed both the one step install version AND the ZIP
>> file version and in both cases rubyw.exe doesn't seem to work. Doesn't
>> execute at all.
>>
>> I don't really mind using just ruby.exe for all of my programming but
>> just as ong as I can make Tk and windowing apps.
>>
>> Can anyone help?
>
> explaining the problem would be a great start. what 'does not work'
> about
> rubyw.exe?
>
> -a

Rubyw.exe doesn't execute at all.

Everything else is fine.

If I don't need Rubyw.exe and can make RubyTK and other things just fine
with the console, then I won't worry about it.

I have the latest version of Ruby and i'm using Windows XP.

--
Posted via http://www.ruby-....

Ryan Leavengood

4/2/2007 4:50:00 PM

0

On 4/2/07, R.E. <j101j01@yahoo.com> wrote:
> I've looked at the FAQ, Ruby Docs, and Google on how to fix rubyw.exe
> for Win XP and there is no help at all.

FWIW, I have no problems.

Running this code on Windows XP with rubyw.exe results in the image
linked below.

require 'fox16'

include Fox
theApp = FXApp.new
theMainWindow = FXMainWindow.new(theApp, "Hello", nil, nil, DECOR_ALL,
100, 100, 500, 400)
theApp.create
theMainWindow.show
theApp.run
__END__

Screenshot: http://ryanleavengood.com/files/ruby...

Ryan

stu

4/2/2007 4:57:00 PM

0

On Apr 2, 12:16 pm, "R.E." <j101...@yahoo.com> wrote:
> I've looked at the FAQ, Ruby Docs, and Google on how to fix rubyw.exe
> for Win XP and there is no help at all. I've tried i've seen and nothing
> works. I have downloed both the one step install version AND the ZIP
> file version and in both cases rubyw.exe doesn't seem to work. Doesn't
> execute at all.
>
> I don't really mind using just ruby.exe for all of my programming but
> just as ong as I can make Tk and windowing apps.

you do realise the only difference between ruby.exe and rubyw.exe is
that rubyw creates no output console window thats visible? so when you
run it, it looks like it might not actually be running....

-stu

Ara.T.Howard

4/2/2007 5:00:00 PM

0

R.E.

4/2/2007 5:20:00 PM

0

I see, sorry. Total waste of time.
I thought it was a Ruby GUI where you could enter the commands..like
Python.
My mistake.

--
Posted via http://www.ruby-....

Phillip Gawlowski

4/2/2007 5:47:00 PM

0

.. .. wrote:
> I see, sorry. Total waste of time.
> I thought it was a Ruby GUI where you could enter the commands..like
> Python.
> My mistake.
>

That'd be irb (Interactive Ruby). open a command window (cmd.exe), and
launch irb.

--
Phillip "CynicalRyan" Gawlowski
http://cynicalryan....

Rule of Open-Source Programming #15:

If you like it, let the author know. If you hate it, let the author
know why.

Anders Persson

4/2/2007 7:28:00 PM

0

You know there is one like this, start a shell and enter IRB
if you want more GUI like there is a FOX BASED called fxirb
Search for it and there is a description how to install it with
Ruby's gem.
// Anders

2 apr 2007 kl. 19.19 skrev .. ..:

> I see, sorry. Total waste of time.
> I thought it was a Ruby GUI where you could enter the commands..like
> Python.
> My mistake.
>
> --
> Posted via http://www.ruby-....
>

med vänliga hälsningar
Anders Persson
____________________________________
anders.u.persson@telia.com




Ryan Leavengood

4/2/2007 7:51:00 PM

0

On 4/2/07, Anders Persson <anders.u.persson@telia.com> wrote:
> You know there is one like this, start a shell and enter IRB
> if you want more GUI like there is a FOX BASED called fxirb
> Search for it and there is a description how to install it with
> Ruby's gem.

That is a good point. But the Fox tool is called fxri and it is
included in the Ruby One-Click Installer for Windows. It is in the
start menu entry for Ruby.

Ryan

Lyle Johnson

4/2/2007 8:51:00 PM

0

On 4/2/07, Ryan Leavengood <leavengood@gmail.com> wrote:
> On 4/2/07, Anders Persson <anders.u.persson@telia.com> wrote:
> > You know there is one like this, start a shell and enter IRB
> > if you want more GUI like there is a FOX BASED called fxirb
> > Search for it and there is a description how to install it with
> > Ruby's gem.
>
> That is a good point. But the Fox tool is called fxri and it is
> included in the Ruby One-Click Installer for Windows. It is in the
> start menu entry for Ruby.

No, it's called FXIrb (http://rubyforge.org/proje...). FXRi is
a different tool -- a graphical user interface to the RI documentation
utility.