Não é possível acessar as variáveis ​​definidas attr_accessor

Estou usando o Thinking Sphinx para executar pesquisas e recebo os modelos apropriados do ActiveRecord. O problema é, eu quero criar um caminho de link apropriado e texto em cada modelo, em seguida, enviar as informações para o navegador na forma de JSON, via AJAX. Eu estou usando o seguinte para criar esses atributos de link:

No controlador:

class FindController < ApplicationController
  def tag_results
    @results = ThinkingSphinx.search(params[:terms])
    @results.each do |result|
      result.build_ajax_response
    end
    respond_to do |format|
      format.html
      format.json { render :json => @results }
    end
  end
end
No modelo:
class TaggedItem < ActiveRecord::Base
  attr_accessible :name
  attr_accessor :search_link, :search_text<p></p>

def build_ajax_response self.search_link = Rails.application.routes.url_helpers.tagged_item_path(self.id) self.search_text = self.name end end The resulting json object doesn't have either of the search_* attributes listed, much less have a value for them. I've tried using @search_link as well as just search_link in the build_ajax_response method.

Am I doing this wrong? Could there be something else interfering?