Sha256: f5e9263cf91db7583ae7e1cc44e61ca08557caafd8b25dc798d5342b0f62ce97
Contents?: true
Size: 455 Bytes
Versions: 76
Compression:
Stored size: 455 Bytes
Contents
# frozen_string_literal: true require 'active_support' class LHS::Proxy module Link extend ActiveSupport::Concern private def record_from_link LHS::Record.for_url(_data.href) end def endpoint_from_link LHS::Endpoint.for_url(_data.href) end def params_from_link return {} if !_data.href || !endpoint_from_link LHC::Endpoint.values_as_params(endpoint_from_link.url, _data.href) end end end
Version data entries
76 entries across 76 versions & 1 rubygems