rugby-board/rugby-board

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper
  def active_class(link_path)
    current_page?(link_path) ? "menu-active" : ""
  end
end