module FedoraLens::AttributeMethods::Read::ClassMethods

Public Instance Methods

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