I have a Rail 4 application that uses the ajaxify_rails Gem. So only my content is loaded but not the full page. Now I have defined a helper method that I want to call in every view as first statement. My current approch is doing this explicit in every view, but this is much duplicated code. So I have many views all starting with
= rails_helper_method
...
Is there a way to to this impliedly on every view, or do I just have to call it over and over again?