My question is similar to this one over here about include and extend.
What's the difference between require and include in Ruby? If I just want to use the methods from a module in my class, should I require it or include it?
|
3
|
My question is similar to this one over here about include and extend. What's the difference between
|
|||
|
|
|
|
From here:
So if you just want to use a module, rather than extend it or do a mix-in, then you'll want to use "require". Oddly enough, Ruby's "require" is analogous to C's "include", while Ruby's "include" is almost nothing like C's "include". |
||
|
|
|
|
Ruby require is more like "include" in other languages (such as C). This tells Ruby that you want to bring in the contents of another file. Ruby include is an OO inheritance mechanism used for mixins. There is a good explanation here. |
||
|
|