Displaying 1 result from an estimated 1 matches for "component_instance".
2006 Nov 06
21
acts_as_ferret and associations
I have the following models:
    class Book < ActiveRecord::Base
      acts_as_ferret
      belongs_to :author
    end
    class Author < ActiveRecord::Base
        has_many :books
    end
and in the controller:
  def search
    if params[:query]
      @query = params[:query]
      @total, @books = Book.full_text_search(@query, :page => 
(params[:page]||1))
      @pages =