vote up 2 vote down star

What is the idiomatic way to add an include guard in a ruby file analogous to

#ifdef FOO_H
#define FOO_H
...

#endif

in C?

flag

62% accept rate

2 Answers

vote up 3 vote down check

As Chris Jester-Young says, require should be all you need. That said, you can use a simple if or similar as an "include" guard if you want to make yourself one, e.g.:

unless defined? FooGuard
  FooGuard = true
  ... rest of code ...
end

You can do anything in the body of the if, including define classes, methods, etc.

link|flag
vote up 10 vote down

If you use require to load your file, it will only be included once (assuming you're not loading the same file by different names/paths), so in general Ruby files do not use include guards.

link|flag

Your Answer

Get an OpenID
or

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