Этот код будет лучшим помощником.
это может выглядеть так:
module SomeHelper
def page_options
@page_options ||= begin
options = {}
if current_page.include? "test_string_one"
options[:total_index] = 3
options[:next_location] = '../random_string/page0.html'
options[:next_name] = 'title 2'
elsif current_page.include? "test_string_two"
options[:total_index] = 10
options[:next_location] = '../another_random_string/page0.html'
options[:next_name] = 'title 3'
end
options
end
end
end
Затем на каждой странице, которая вам нужна, вы можете получить доступ к таким параметрам: page_options[:total_index]