Sha256: 750c60f6c6a4ebf1e8cd3011d06c6939f94f57a8c4e1cba7cd948b7daec8c07b
Contents?: true
Size: 591 Bytes
Versions: 22
Compression:
Stored size: 591 Bytes
Contents
# frozen_string_literal: true module PlatformosCheck module PlatformosLiquid class SourceIndex class ParameterEntry < BaseEntry def summary nil end def platformos_documentation_url "#{PLATFORMOS_DOCUMENTATION_URL}/api-reference/liquid/filters/#{hash['name']}" end def full_summary "#{hash['name']} - #{hash['description']}" end private def return_type_hash { 'type' => (hash['types'] || ['untyped']).first } end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems