moonmaster9000/frill

View on GitHub
test_frill_rails/app/frills/pretty_title_frill.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PrettyTitleFrill
  include Frill

  def self.frill?(*)
    true
  end

  def title
    "Decorated #{super} is Pretty"
  end
end