class ActiveFedora::SchemaIndexingStrategy

def apply(object, property)

Parameters:
  • property (ActiveTriples::Property, #name, #to_h) -- The property to define.
  • object (ActiveFedora::Base) -- The object to apply the property to.
def apply(object, property)
  object.property property.name, property.to_h do |index|
    indexer.new(property).index(index)
  end
end