TrestleAdmin/trestle

View on GitHub
app/helpers/trestle/status_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Trestle
  module StatusHelper
    def status_tag(label, status=:primary, options={})
      options[:class] ||= ["badge", "badge-#{status}"]
      content_tag(:span, label, options)
    end
  end
end