Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Ruby. I'm looking to import functions from a module that contains a tool I want to continue using separately. In Python I would simply do this:

def a():
    ...
def b():
    ...
if __name__ == '__main__':
    a()
    b()

This allows me to run the program or import it as a module to use a() and/or b() separately. What's the equivalent paradigm in Ruby?

share|improve this question
possible duplicate of Run a Ruby library from the command-line – Andrew Grimm Aug 17 '11 at 3:18

2 Answers

up vote 45 down vote accepted

From the Ruby I've seen out in the wild (granted, not a ton), this is not a standard Ruby design pattern. Modules and scripts are supposed to stay separate, so I wouldn't be surprised if there isn't really a good, clean way of doing this.

EDIT: Found it.

if __FILE__ == $0
    foo()
    bar()
end

But it's definitely not common.

share|improve this answer
2  
What's the reasoning behind keeping modules and scripts separate, out of curiosity? – Imagist Feb 12 '10 at 2:43
2  
I think it's just what Rubyists prefer to do. A module definition is a module definition. If you want to take some action with that module, fine, but the action you're taking isn't a module definition. – Matchu Feb 12 '10 at 2:48
6  
It's handy, though, for testing things -- you can put module tests in there and run them just from the module file without any wrapper. – ebneter Feb 12 '10 at 3:11
1  
@Imagist and @ebneter Or the other way around: the script is a single module that is intended to be run from the commandline, but you also want to be able to test it in parts and have the test in a seperate module. In that case, NAME == $0 is invaluable. – Confusion Feb 24 '10 at 9:56
3  
I haven't seen this either, but it isn't frowned upon. The official Ruby docs use it: ruby-lang.org/en/documentation/quickstart/4 – cflewis Aug 7 '10 at 7:28

I haven't tested this, just tried it out in irb, but it seems you could also do:

if self.inspect == 'main'
  # call stuff
end

__FILE__ == $0 is definitely the conventional form, but the above seems less cryptic to me.

Theoretically you could run into trouble if you include the file from a context that isn't top-level but the object that was 'self' in that context still returned 'main' to a call to inspect. However, trying the obvious out in irb it seems hard to do by accident:

ruby-1.9.2-p180 :019 > x = 'main'
 => "main" 
ruby-1.9.2-p180 :020 > x.inspect == 'main'
 => false 

And being able to deliberately override inspect to return 'main' may actually be useful in some situations.

share|improve this answer
Sorry, that doesn’t seem to work. See my testing code: gist.github.com/2949232. If another file requires a file that uses if self.inspect == 'main', the “main” code is still run – that’s not what we want. – Rory O'Kane Jun 18 '12 at 16:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.