Installing

Hello!I have just started programming in Ruby as part of my University course.Now I am having trouble with installing ruby and freeride. I downloaded Ruby1.8.5 One click installer from www.ruby-lang.org but when I try to open FreeRide that was included in the package all I get is a console window withloads and loads of text. Most of the text says Failing to load: etc.Any help would be greatly appreciated.dipen

···

Date: Wed, 15 Nov 2006 01:44:11 +0900> From: nobu@ruby-lang.org> Subject: Re: Ruby on win32 cannot handle certain filenames> To: ruby-talk@ruby-lang.org> > Hi,> > At Tue, 14 Nov 2006 09:28:58 +0900,> David Barri wrote in [ruby-talk:224879]:> > I have a serious ruby windows problem. When I use IO related calls (such > > as Dir.glob, File.open, etc) on my machine (WinXP), filenames are always > > returned in the shift_jis charset.> > Do you use Japanese version Windows? Those methods use "OEM> string" but have no shift_jis specific code.> > > File.open is using the shift_jis charset for filenames, it is NOT > > POSSIBLE (!) for Ruby to open files that have say European chars in the > > filename!! In this day and age SURELY it cannot be the case that it's > > not possible in Ruby! It must be my inexperience :slight_smile: There must be some > > way that I don't know about. Any ideas/opinions/suggestions?> > If your system runs with European 8-bit charset, it should work> by setting $KCODE to "N".> > > Also, I've tried changing the KCODE but it has absolutely no effect on > > Dir.glob or Flie.open.> > $KCODE is for internal use, typically Regexp.> > > Also, when I used Dir.glob, Japanese filenames worked fine but one file > > that had an ë in it (e with umlat) had been converted somewhere in > > ruby's internals to just a plain ASCII e. There must be some way to > > disable this internal charset conversion.> > Not ruby's internals, it's done in Windows kernel.> > -- > Nobu Nakada>

_________________________________________________________________
Be one of the first to try Windows Live Mail.

Dipen Narendra Kumar wrote:

Hello!I have just started programming in Ruby as part of my University
course.Now I am having trouble with installing ruby and freeride. I
downloaded Ruby1.8.5 One click installer from www.ruby-lang.org but when
I try to open FreeRide that was included in the package all I get is a
console window withloads and loads of text. Most of the text says
Failing to load: etc.Any help would be greatly appreciated.dipen

Dipen -

That scrolling text you see is warnings being displayed. If you are
patient enough, FreeRIDE should start. However, if you've installed
1.8.5 why not use SciTE (it's installed as well in your ruby directory)?
It is, in my opinion, a nice, lightweight editor with ruby syntax
highlighting.

-Drew

···

--
Posted via http://www.ruby-forum.com/\.

"Drew Olson" <olsonas@gmail.com> wrote in message
news:b386750244fbed5bc0ff5344158ab520@ruby-forum.com...

Dipen Narendra Kumar wrote:

Hello!I have just started programming in Ruby as part of my University
course.Now I am having trouble with installing ruby and freeride. I
downloaded Ruby1.8.5 One click installer from www.ruby-lang.org but when
I try to open FreeRide that was included in the package all I get is a
console window withloads and loads of text. Most of the text says
Failing to load: etc.Any help would be greatly appreciated.dipen

Dipen -

That scrolling text you see is warnings being displayed. If you are
patient enough, FreeRIDE should start. However, if you've installed
1.8.5 why not use SciTE (it's installed as well in your ruby directory)?
It is, in my opinion, a nice, lightweight editor with ruby syntax
highlighting.

-Drew

--
Posted via http://www.ruby-forum.com/\.

Thank you Drew. I seem to like SciTe as well. I think I will use that from
now on.

dips