# frozen_string_literal: true class User < ActiveRecord::Base normalizy :name def custom_reverse(input, options = {}) "'#{input.reverse}' to '#{options[:object].name}'" end end