Pulling a class from a ruby file

A

Abhishek Ray

I have a single ruby file, consisting of a class definition, and some
code outside the class. Our tech lead wants this keep all this in a
single file. I also have a unit test in a seperate ruby file which tests
the class. The problem is that I want the unit test to load only the
class without executing the code outside the class, which I can't do
with 'require' or 'load'.

Is there any way in Ruby to load only a single class from another file.
 
A

Avdi Grimm

Is there any way in Ruby to load only a single class from another file.

No.

If you only want the external code the be executed when the file is
run as an executable, and not when it is loaded by another file, you
can enclose that code in a conditional, thus:

if $0 == __FILE__
# ... code to execute when run as an executable ...
end

I haven't tested the above code. You might need to alter it to make
it more robust, along the lines of:

if File.expand_path($0) == File.expand_path(__FILE__)
# ...
end

--
Avdi

Home: http://avdi.org
Developer Blog: http://avdi.org/devblog/
Twitter: http://twitter.com/avdi
Journal: http://avdi.livejournal.com
 
J

Joel VanderWerf

Avdi said:
No.

If you only want the external code the be executed when the file is
run as an executable, and not when it is loaded by another file, you
can enclose that code in a conditional, thus:

if $0 == __FILE__
# ... code to execute when run as an executable ...
end

or put the external code inside of some specialized construct:

def external
yield unless $testing
end

external do
class C
end

def foo
end
end

C
foo
 
M

Mark Wilden

def external
yield unless $testing
end

external do
class C
end

def foo
end
end

C
foo

This is cool, but is it any different than

unless $testing
class C
end
end

///ark
 
J

Joel VanderWerf

Mark said:
This is cool, but is it any different than

unless $testing
class C
end
end

Oh, that would too and maybe even be better, if your condition is just a
boolean. I was expecting there might be more to it than that....
 

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

Forum statistics

Threads
473,970
Messages
2,570,162
Members
46,710
Latest member
bernietqt

Latest Threads

Top