sutty/app/models/metadata_factory.rb

16 lines
323 B
Ruby

# frozen_string_literal: true
# Devuelve metadatos de cierto tipo
class MetadataFactory
class << self
def build(**args)
classify(args[:type]).new(**args)
end
def classify(type)
@factory_cache ||= {}
@factory_cache[type] ||= ('Metadata' + type.to_s.camelcase).constantize
end
end
end