How to evaluate file as Ruby code?

R

Ronald Fischer

How do I evaluate a text file as a sequence of Ruby statements?
(For those who happen to know Perl: I would like to have an
equivalent of the Perl 'do FILENAME' feature).

For example, I have a file "foo" which contains the lines

abc=4
def=5

I would like to "evaluate" the file such that after this, the
variable abc is set to 4 and def is set to 5.

I tried the following:

eval(File.new("foo").read)

But after this, abc is still undefined. What am I doing wrong here?

Ronald
 
C

ChrisH

Ronald said:
How do I evaluate a text file as a sequence of Ruby statements?
(For those who happen to know Perl: I would like to have an
equivalent of the Perl 'do FILENAME' feature).

For example, I have a file "foo" which contains the lines

abc=4
def=5

I would like to "evaluate" the file such that after this, the
variable abc is set to 4 and def is set to 5.

I tried the following:

eval(File.new("foo").read)

But after this, abc is still undefined. What am I doing wrong here?

Ronald

require <file> will load and evaluate the file once, but will not load
a file that has already been 'require'd

load <file> will load and evaluate the file, it will reload and
re-evaluate.

Cheers
Chris
 
R

Ross Bamford

How do I evaluate a text file as a sequence of Ruby statements?
(For those who happen to know Perl: I would like to have an
equivalent of the Perl 'do FILENAME' feature).

For example, I have a file "foo" which contains the lines

abc=4
def=5

I would like to "evaluate" the file such that after this, the
variable abc is set to 4 and def is set to 5.

I tried the following:

eval(File.new("foo").read)

But after this, abc is still undefined. What am I doing wrong here?

It's just the way Ruby works with respect to deciding whether 'a' is a
variable or a method. Your assignment didn't get 'seen' except inside an
eval. You can use eval again to get back there (changed the var names,
def is a keyword):

eval File.read('foo.rb')
p eval('a')
# => 4
p eval('b')
# => 5

But that's a hack, and really I think you should consider an alternate
design - local variables are supposed to be, well, local. Maybe
constants or (though it pains me to say it) globals would be more
suitable?

Another technique I've used with great success is having a class that
acts as context for an external script, providing methods and holding
data in instance variables. You supply a script similar to yours above,
except using instance variables, which is then instance_eval'd in an
instance of that class, after which you have a self-contained
configuration, or whatever else it is you made.
 
W

Wybo Dekker

How do I evaluate a text file as a sequence of Ruby statements?
(For those who happen to know Perl: I would like to have an
equivalent of the Perl 'do FILENAME' feature).

For example, I have a file "foo" which contains the lines

abc=4
def=5

I would like to "evaluate" the file such that after this, the
variable abc is set to 4 and def is set to 5.

I tried the following:

eval(File.new("foo").read)

But after this, abc is still undefined. What am I doing wrong here?

first, def=5 is a problem because def is a reserved word
So make 'foo' to state
a=4
b=5

and then try:

a = b = nil
eval(File.new('foo').read)
puts "a=#{a} b=#{b}"
 
J

Joel VanderWerf

Ross said:
Another technique I've used with great success is having a class that
acts as context for an external script, providing methods and holding
data in instance variables. You supply a script similar to yours above,
except using instance variables, which is then instance_eval'd in an
instance of that class, after which you have a self-contained
configuration, or whatever else it is you made.

For example, http://raa.ruby-lang.org/project/script
 
R

Ronald Fischer

load said:
re-evaluate.

This is exactly what I'm looking for (and for my problem it is
OK that I revert to local variables).

But now I have a new problem: Exceptions thrown by 'load' can not
be caught!

For example,

begin
load ".defaultpar"
rescue
puts "file not found"
end

If the file does not exist, I get the error message

in `load': no such file to load -- .defaultpar (LoadError)

Of course I can circumvent it by testing before for the existence
of the file, but I wonder how I can find (from the Ruby specification),
which exceptions can be caught by "rescue" and which ones can not.

Ronald
 
D

dblack

Hi --

This is exactly what I'm looking for (and for my problem it is
OK that I revert to local variables).

But now I have a new problem: Exceptions thrown by 'load' can not
be caught!

For example,

begin
load ".defaultpar"
rescue
puts "file not found"
end

If the file does not exist, I get the error message

in `load': no such file to load -- .defaultpar (LoadError)

Of course I can circumvent it by testing before for the existence
of the file, but I wonder how I can find (from the Ruby specification),
which exceptions can be caught by "rescue" and which ones can not.

I believe rescue on its own catches RuntimeError and its descendants.
If you want to rescue something else, you can do:

rescue LoadError


David

--
David A. Black ([email protected])
Ruby Power and Light (http://www.rubypowerandlight.com)

"Ruby for Rails" chapters now available
from Manning Early Access Program! http://www.manning.com/books/black
 
H

Harold Hausman

I think rescue by default only catches StandardError (and descendants).

Maybe:

rescue Exception =3D> ex

Will catch this one?

-Harold
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,202
Messages
2,571,057
Members
47,665
Latest member
salkete

Latest Threads

Top