When using class files in Ruby, do you put the 'requires' statements at the top of the file, or inside the class definition?
|
|
at the top.
|
||
|
|
|
|
At the top of the file, the majority (but not all) languages handle imports this way. I find it much cleaner and easier to handle them this way. I think it only makes sense this way really... like you get mid way in a file then:
as you can see, it would be very hard to track them. Not to mention if you wanted to use the imported functions earlier in your code, you would probably have to backtrack and include it again because the other import would be specific to that class. Importing the same files would create a lot of overhead during runtime as well. |
|||
|
|
|
Technically, it doesn't really matter. Practically speaking, you should put them at top so people can see the file's dependencies at a glance. That's the traditional place for it. |
||
|
|
|
|
I can see a possible reason for not putting a Something a little like this:
|
||
|
|
|
|
It doesn't really matter where you put them, but if you put them inside a So, better put them at the top to avoid any confusion. |
||
|
|
