module FedoraLens::AttributeMethods::Write::ClassMethods

Public Instance Methods

define_method_attribute=(name) click to toggle source
# File lib/fedora_lens/attribute_methods/write.rb, line 37
def define_method_attribute=(name)
  method = WriterMethodCache[name.to_s]
  generated_attribute_methods.module_eval {
    define_method "#{name}=", method
  }
end