Используйте гем чтения PDF, например pdf-reader , и внесите его в указатель Sunspot.
class Item < ActiveRecord::Base
searchable if: proc{ |topic| topic.try(:price).try(:>,0) } do
text :attachment_text # index result returned from attachment() method
end
# getting text out of attachment
def attachment_text
# pseudo code of determining attachment format
case attachment.extension
when :pdf
# Use pdf-reader gem get all the text from all pages
when :txt
return open(attachment).read()
end
end
end