In Ruby I want to put some helpers in an extra-module and file. I will use it at the model-level, so i put
include MyHelper
class Shop
...
end
I now realize this can also be done like so:
class Shop
include MyHelper
...
end
Can anyone explain me more about the differences? Is the second version always the better choice?
