module Ros::Sdk

Attributes

configured_services[RW]

Public Class Methods

service_endpoints() click to toggle source
# File lib/ros_sdk/sdk.rb, line 8
def service_endpoints
  configured_services.each_with_object({}) do |service, hash|
    hash[service[0]] = service[1]::Base.site
  end
rescue
  raise ClientConfigurationError
end