Impatient Newbie Question: "Self-Compiled..."?

Hi,

I’ve snagged the Ruby Nutshell book (which is jam-packed full of stuff that
I currently can’t decipher), and have another book on the way from Amazon
soon. I’m trying to be patient, to go through the docs, and to leave you
more adept folks alone until I can at least ask some non-tedious questions.
But I have this nagging issue that I really want to find out about NOW, and
I’m hoping someone will have a little mercy on a newbie.

Namely: I’ve seen references to “self-compiled” Ruby files. What does that
mean, or, where do I read up on it?

Thanks!

  • dan, slinking back into the kiddie pool

dhtapp wrote:

Namely: I’ve seen references to “self-compiled” Ruby files. What does that
mean, or, where do I read up on it?

Can you give us a reference (eg, page number, if you saw it in one of the Ruby books)?

If you’re referring to:-
http://www.ruby-talk.org/78848

···

“dhtapp” dhtapp@cox.net wrote:

Hi,

I’ve snagged the Ruby Nutshell book (which is jam-packed full of stuff that
I currently can’t decipher), and have another book on the way from Amazon
soon. I’m trying to be patient, to go through the docs, and to leave you
more adept folks alone until I can at least ask some non-tedious questions.
But I have this nagging issue that I really want to find out about NOW, and
I’m hoping someone will have a little mercy on a newbie.

Namely: I’ve seen references to “self-compiled” Ruby files. What does that
mean, or, where do I read up on it?

Thanks!

  • dan, slinking back into the kiddie pool

same.rb:4: [BUG] rb_sys_fail() - errno == 0
ruby 1.8.0 (2003-08-04) [i386-mingw32]
abnormal program termination

It is a self-compiled ruby.

he means he compiled Ruby from the source so
isn’t using a pre-compiled binary (like the
one-click install for Windows).

You can’t compile Ruby scripts.

daz

dhtapp wrote:

I’ve snagged the Ruby Nutshell book (which is jam-packed full of stuff that
I currently can’t decipher), and have another book on the way from Amazon
soon.

If you are very new to Ruby and don’t have a complex programming
background, then Mark Slagell’s “Teach yourself Ruby in 21 days” might
be of interest to you (despite the title, it is a wonderful book).

M.

That’s the answer I needed…thanks!

  • dan

“daz” dooby@d10.karoo.co.uk wrote in message
news:vkltc8ihfvsq65@corp.supernews.com

···

You can’t compile Ruby scripts.

You can’t compile Ruby scripts.

Of course you can compile ruby scripts, look for ‘exerb’.

Helmut

Of course you can compile ruby scripts, look for ‘exerb’.

This does not compile anything. It packages your Ruby application along
with the Ruby interpreter, so that you can distribute a Ruby app as if
it were stand-alone native code. However, it is still being interpreted
by ruby.exe.

James

···

helmut.brugger@gmx.net wrote:

Helmut