class Iglu::Registries::RegistryRef
Interface
Attributes
class_priority[R]
config[R]
descriptor[R]
Public Instance Methods
lookup_schema(schema_key)
click to toggle source
# File lib/iglu-client/registries.rb, line 23 def lookup_schema(schema_key) end
vendor_matched(schema_key)
click to toggle source
# File lib/iglu-client/registries.rb, line 26 def vendor_matched(schema_key) matches = @config.vendor_prefixes.map { |p| schema_key.vendor.start_with?(p) } matches.include? true end