Sha256: b8f35a53ea01cda5f25b58320a96f98906e8f3d5073dd7e02ab83cbd4bf3b4c9
Contents?: true
Size: 302 Bytes
Versions: 12
Compression:
Stored size: 302 Bytes
Contents
# frozen_string_literal: true class ThinkingSphinx::Search::StaleIdsException < StandardError attr_reader :ids, :context def initialize(ids, context) @ids = ids @context = context end def message "Record IDs found by Sphinx but not by ActiveRecord : #{ids.join(', ')}" end end
Version data entries
12 entries across 12 versions & 1 rubygems