...

/

Define Helpers in As Few Locations as Possible

Define Helpers in As Few Locations as Possible

Learn why we should define helpers as little as possible.

We'll cover the following...

Markup generator helpers

Helpers that generate markup or wrap the invocation of render should be in the app/helpers/application_helper.rb file. In fact, that should be the only file in app/helpers. The reason is that helpers represent a global namespace, so if we attempt to organize helpers into multiple files, these files don’t represent true namespaces that can isolate the method from ...