[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Really basic Ruby question

paul.denlinger@gmail.com

3/25/2006 7:21:00 PM

I'm learning Ruby from the Learn to Program tutorial by Chris Pine.

On http://pine.fm/LearnToProgram/?..., he mentions saving a
calc.rb file after typing in "puts 1 + 2" in my text editor , then
going to the command line and typing "ruby calc.rb", and getting the
results "3" returned.

I am not getting this result; instead I'm getting a message that the
file or directory can't be found. I'm using the built-in Scintilla text
editor which comes with Ruby.

How do I get the command line to see the saved file?

Thanks in advance for your assistance.

7 Answers

13

3/25/2006 7:40:00 PM

0

Hi,

Looks like you are using Scite editor. If so, you can press F5 and see
program output directly in Scite.

--
Martins


On 3/25/06, paul.denlinger@gmail.com <paul.denlinger@gmail.com> wrote:
> I'm learning Ruby from the Learn to Program tutorial by Chris Pine.
>
> On http://pine.fm/LearnToProgram/?..., he mentions saving a
> calc.rb file after typing in "puts 1 + 2" in my text editor , then
> going to the command line and typing "ruby calc.rb", and getting the
> results "3" returned.
>
> I am not getting this result; instead I'm getting a message that the
> file or directory can't be found. I'm using the built-in Scintilla text
> editor which comes with Ruby.
>
> How do I get the command line to see the saved file?
>
> Thanks in advance for your assistance.
>
>
>


David Newberger

3/25/2006 7:40:00 PM

0

What directory is the saved file in would be my first question.

ruby /path/to/calc.rb

would be the first thing that comes to mind.

David Newberger
651.271.9045
me@davidnewberger.com
http://www.davidnew...


On Mar 25, 2006, at 1:23 PM, paul.denlinger@gmail.com wrote:

> I'm learning Ruby from the Learn to Program tutorial by Chris Pine.
>
> On http://pine.fm/LearnToProgram/?..., he mentions saving a
> calc.rb file after typing in "puts 1 + 2" in my text editor , then
> going to the command line and typing "ruby calc.rb", and getting the
> results "3" returned.
>
> I am not getting this result; instead I'm getting a message that the
> file or directory can't be found. I'm using the built-in Scintilla
> text
> editor which comes with Ruby.
>
> How do I get the command line to see the saved file?
>
> Thanks in advance for your assistance.
>
>



Farrel Lifson

3/25/2006 7:42:00 PM

0

Have you saved the program to file called 'calc.rb' and run 'ruby
calc.rb' from the directory it's in?


james_b

3/25/2006 7:49:00 PM

0

paul.denlinger@gmail.com wrote:
> I'm learning Ruby from the Learn to Program tutorial by Chris Pine.
>
> On http://pine.fm/LearnToProgram/?..., he mentions saving a
> calc.rb file after typing in "puts 1 + 2" in my text editor , then
> going to the command line and typing "ruby calc.rb", and getting the
> results "3" returned.
>
> I am not getting this result; instead I'm getting a message that the
> file or directory can't be found. I'm using the built-in Scintilla text
> editor which comes with Ruby.
>
> How do I get the command line to see the saved file?

You may be opening the command prompt in some default home directory,
which is not the same place where you saved the Ruby file.

When you save the file in Scintilla, make sure you save it to c:\calc.rb

Then, when you get a command prompt, go to the C: drive, then change to
the root drive:

c:\> cd
Then try running ruby calc.rb.


If that works, all is good.

You will probably be able to run it by just typing the file name and
hitting Enter, too, if the Ruby installation set up the filetype
execution association for you.

Now, I don't generally advocate saving your files to the root of the C:
drive, so decide where you want to place the files, and then just figure
out how to navigate there once you have a command prompt.


--
James Britt

"In Ruby, no one cares who your parents were, all they care
about is if you know what you are talking about."
- Logan Capaldo


paul.denlinger@gmail.com

3/25/2006 8:03:00 PM

0

Thank you. It works!

benjohn

3/26/2006 9:06:00 AM

0


On 25 Mar 2006, at 20:03, paul.denlinger@gmail.com wrote:

> Thank you. It works!

If you are learning, you might want to try the interactive ruby
interpreter: irb. That will save you writing things, saving them, and
trying them. For simple tests it is very quick. To use it, go to your
command line and type:

irb

And then you're be able to type "puts 1 + 2" and see the result
directly.

Have fun anyway!

Cheers,
Benjohn



paul.denlinger@gmail.com

3/26/2006 3:24:00 PM

0

Thank you very much for the suggestion.