Method: ModelRdf#get_not_hidden_models

Defined in:
lib/data_models/model_rdf.rb

#get_not_hidden_modelsHash

Return data stored in the RDF informations yaml file about publicated models.

Returns:

  • (Hash)

    return RDF information about not hidden rdf information’s models.



42
43
44
45
46
47
48
49
50
# File 'lib/data_models/model_rdf.rb', line 42

def get_not_hidden_models
  models = []
  DataModels.load_models.each do |mod|
    unless self.hidden?(mod) 
      models << mod
    end
  end
  models
end