Gem Ransack doesn't return any results when searched with full name
问题 I'm using Ransack with Rails 3. My views: <%= search_form_for @search do |f| %> <%= f.text_field :first_name_or_last_name_or_company_cont, :style => 'width:150px;padding-top:6px;' %><p class="button"> <%= f.submit "Search by name or company" %></p> <% end %> My schema: create_table "users", :force => true do |t| t.string "first_name", t.string "last_name" on the User model I have: def full_name "#{self.first_name} #{self.last_name}" end Working on the console. If I have user with first_name =