app/controllers/search_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SearchController < ApplicationController

  def do_search
    @books = Book.where('name ilike ?',"%#{params[:keyword]}%").limit(24)
    render :view
  end
end