# File lib/her/model/attributes.rb, line 290 def setter_method_names @_her_setter_method_names ||= begin instance_methods.each_with_object(Set.new) do |method, memo| memo << method.to_s if method.to_s.end_with?('=') end end end