Same ruby file acting standalone resp. as library

Hello,

the class definitions of my ruby file shall always be active, whether
the file is run as standalone program or whether the file is used
indirectly by require or load,
but when the file is run standalone, a special piece of code within
the file shall be active in addition (a kind of main section).

The idea is that the same ruby code file should be able to act in both
kinds: as a library and as a standalone program which is using that
library functionality.

How can I achieve that easily?

Regards
Thomas H.

On Saturday 21 April 2007 16:25, Thomas H. wrote:

the file is run as standalone program or whether the file is used
indirectly by require or load,
but when the file is run standalone, a special piece of code within
the file shall be active in addition (a kind of main section).

Perhaps you want:

if FILE == $0
(do something)
end

as was just mentioned in another thread:

http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/248563

Jesse M. [email protected] wrote/schrieb
[email protected]:

Perhaps you want:

if FILE == $0
(do something)
end

Yes, that’s it.

Thanks
Thomas