Class: Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::SingleApplicator

Inherits:
Applicator
  • Object
show all
Defined in:
lib/valkyrie/persistence/fedora/persister/orm_converter.rb

Overview

Class for mapping single values

Instance Attribute Summary

Attributes inherited from Applicator

#property

Instance Method Summary collapse

Methods inherited from Applicator

#blacklist, #blacklist?, #cast_array, #deny?, #denylist, #initialize, #key, #namespaces, #values

Constructor Details

This class inherits a constructor from Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::Applicator

Instance Method Details

#apply_to(hsh) ⇒ Hash

Ensure that the value string is inserted into the attribute Hash

Parameters:

  • hsh (Hash)

    a new or existing Hash of attribute for Valkyrie resource attributes

Returns:

  • (Hash)


616
617
618
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 616

def apply_to(hsh)
  hsh[key.to_sym] = values.to_s
end