Sha256: a5791d81b5815a615d48d0c312c5b989cc41f7e83a61d3e662b033a692e7584f
Contents?: true
Size: 389 Bytes
Versions: 20
Compression:
Stored size: 389 Bytes
Contents
module Hydra::ContentNegotiation # CleanGraphRepository has a #find interface which returns a graph for use # with content negotiation. class CleanGraphRepository attr_reader :connection def initialize(connection) @connection = connection end def find(id) ReplacingGraphFinder.new( GraphFinder.new(connection, id) ).graph end end end
Version data entries
20 entries across 20 versions & 1 rubygems