Kosmas/leaguer

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper
  # return the title of the page
  def title(*parts)
    unless parts.empty?
      content_for :title do
        (parts << 'Leaguer').join(' - ')
      end
    end
  end
end