class Rectify::Form

def attributes_that_respond_to(message)

def attributes_that_respond_to(message)
  attributes
    .each_value
    .select { |f| f.respond_to?(message) }
end