Method: ModelRdf#get_not_hidden_models
- Defined in:
- lib/data_models/model_rdf.rb
#get_not_hidden_models ⇒ Hash
Return data stored in the RDF informations yaml file about publicated 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 |