class RGovData::InternalRegistry
Public Instance Methods
load_services()
click to toggle source
Returns the list of services for the realm based on internal yml file
# File lib/rgovdata/catalog/registry_strategy/internal_registry.rb, line 5 def load_services service_array = [] registry = RGovData::Template.get('registry.yml',realm) YAML::load_documents( registry ) { |doc| service_array << doc } service_array end