0
votes
3answers
29 views

Rails ActiveRecord: Multiple conditions in find

This might be more of a Ruby syntax thing than anything else. I'm having difficulty getting two limiting conditions on a SomeObject.find going. Separated, the conditions seem to work: if search != ...
1
vote
0answers
19 views

Searching by several columns in diffrent tables using one input field

I know that this question or its variations were discussed many times. But I didn't find exactly my solution. I have many tables assume 10. I would like to provide a solution for searching in ...
0
votes
1answer
45 views

Searching for attributes of name in a JSON decoded hash

I have a JSON file consisting of an array of galleries, each of which has its own array of photographs: [ { "title":"Some Title", "photographs":[ { "title": "Boat Ramp" ...
-1
votes
0answers
24 views

Rails ransack 'between' search predicate

I want to have a search link which should filter products between some price range say 2000 to 5000. which is the best way to implement this? . I am using Ransack for searching and I implemented this ...
0
votes
0answers
36 views

using Bootstrap Navbar Search with form_tag to redirect to resource index with search params

I'm trying to put a quick keyword search in my navbar, using Bootstrap's Navbar Search component. Currently this is using a form_tag as follows <form class="navbar-search pull-left"> <%= ...
1
vote
0answers
37 views

Sunspot search in production Ruby on Rails 3.2

I install solr-tomcat on my production server, and start this, replace my conf/schema.xml & conf/solrconfig.xml from application but it does no work. In the :8080/solr/admin/ i have HTTP Status ...
1
vote
2answers
62 views

Convert string to an array in rails

How do I convert a string to an array so that it can be searched one by one. For example if the parameter passed is puma shirts,I want to split it as puma and shirt so that I can do solr search with ...
0
votes
1answer
30 views

How to return search results with Sunspot and Solr in rails app?

I am having some trouble with Sunspot and Solr. When I pass a parameter, I'm getting no results. I've included in the comments at 2 points in the code. I've confirmed that there is also data in ...
0
votes
0answers
27 views

Search single text when multiple text is entered using Solr search

I'm trying to do single text search when the user enters mutiple text. Suppose when the user enters 'adidas pants', I want to search the text 'adidas' first in a table called table1. Then the same ...
0
votes
0answers
34 views

Mixed results in rails using solr search

I'm trying implement search function in a project. When the user enters any text, i will use that text as a parameter and will do solr search in 3 tables say table1,table2,table3 and retreive their ...
0
votes
0answers
41 views

undefined method `stringify_keys!' for “test”:String meta_search Multiple search in one action

I am trying to use meta_search to run search on multiple models in the same controller. With my current code if I input something for the Database it works but when I try Application I get the ...
0
votes
0answers
49 views

Create a seach page using ransack and route the results to the same page

I am new to RoR. I am trying to create a home/index page which will contain a search form for ransack gem. I am not sure how to go about it. I have 6 models that are related to each other. I would ...
0
votes
1answer
111 views

Group by entire field value in Tire/ElasticSearch

I'm using the Tire rubygem to connect to ElasticSearch. How can you return facets based on a particular field's value? For example, I have a field areas, and I'd like to show the top 10 areas as ...
0
votes
1answer
45 views

Ransack Search Results

Following Episode #370 Ransack, R. Bates Hello There, I followed R. bates tutorial on ransack and it works fine, but I was wondering how I would make it search at a specific page ...
0
votes
1answer
33 views

IF conditions in rails is not executing

I'm trying to do solr search based on the text entered by the user. Firts I've to check whether the entered text is store or brand or category. After checking that condition I want to display ...
0
votes
0answers
42 views

How do I show up search results that match user criteria in rails 3.2 app?

I have a rails app where there are 2 types of users - students and schools. The students have certain criteria that they are looking for which they update in their profile (area, cost of tuition ...
0
votes
1answer
51 views

Sort and Search in belongs_to and has_many through Associations

I have two models, post and book, associated through a third, kms. association looks like : class Post < ActiveRecord::Base attr_accessible :name, :year, :author, :book_ids has_many :kms ...
0
votes
1answer
39 views

ransack specify timezone in search query

I'm trying to find a way where i can tell ransack to use a specific timezone in queries that involve dates or date range. For example ransack by default uses UTC for datetime searches and i want to ...
1
vote
1answer
34 views

Rails search form- not sure how to get it to work?

I'm trying to add a search form on my main home page of my rails app that can search across the candidate model to see that if I type in the name of a candidate, it displays pictures of possible ...
1
vote
2answers
48 views

My search is case sensitive

I am fairly new to rails, and am using this search form <%= form_tag producer_path(@user), method: :get do %> <p> <%= text_field_tag :search, params[:search] %> ...
2
votes
3answers
51 views

what's best way to make a search form for a really small application?

I'm using rails to make a simple search form in Rails (search news title and content, users name, etc). This app is hosted by Heroku. I took a look at sunspot but it seems it's not free (doesn't work ...
0
votes
0answers
34 views

Abstracting full text search with postgres

So I have a database on a Rails application that uses postgres for full text searching on one model. I would like to abstract this to do full text searching on several different models with it's own ...
0
votes
1answer
16 views

Working with different date fields. How to approach towards an easier search engine? Rails 3.2

I built a small site where I gather information of some cultural events happening in the area. I want to extend the Event model so it can handle 3 different 'case scenario' of events. 'i.e. Single'. ...
0
votes
1answer
47 views

Filtering using collection_select params

I have simple form which allows users to filter search results according to location_id which is given in collection_select form's field. I want to render narrowed results if specific location is ...
0
votes
0answers
53 views

ransack search customization using PostgreSQL function

I have an Order model and a Payments model. Order has many Payments. I'm performing a search on the order model using ransack. I have the following association fields for payments in the search ...
0
votes
1answer
52 views

Can't get rails search form to work with simple_form and sunspot

I have a simple rails app that uses the simple_form gem for forms and I am trying to set up a search form using sunspot. I have followed the instructions in Ryan Bates' railscast on setting up sunspot ...
1
vote
0answers
15 views

Searching data Apis list

Sir My code is this require 'feed_tool' url="http://www.blog.socialappshq.com" @feed = FeedTools::Feed.open(url) if !@feed.blank? for data in @feed.items puts data.title end end ...
0
votes
1answer
84 views

Ransack search, how to search for each word by splitting input search parameter

I am currently experimenting using the ransack gem to conduct a search on a model in Rails. As it stands I am using the basic setup. Controller: def index @q = Person.search(params[:q]) @people ...
0
votes
2answers
61 views

The best way to search according to distance in ruby on rails

In ror, suppose I have a list of geo referenced data in my database (each record have latitude and longitude column) what is the best way to implement search according-to-distance function? I am ...
1
vote
1answer
102 views

Rails search form submit to show method

I am trying to set up a form in a Rails view to submit an id back to the show method in the controller. My form uses autocomplete to set the hidden id field: <%= form_tag students_path, id: ...
0
votes
2answers
35 views

Linking a search form to a specific URL

I'm trying to achieve the following: When a user enters a 5 digit ID in the form at www.something.com, the user would be redirected to www.something.com/obtain/(5 digit ID). I know manually entering ...
0
votes
1answer
295 views

Ransack, search multiple columns, one field, rails 3

So im new to ruby on rails, and are making my first site. I have a user model with 3 columns, firstname, lastname and email. Im using ransack to make a search engine, and i want to have one search ...
0
votes
1answer
147 views

Filtering Database results in Ruby on Rails using dropdown

Respected ppl ... Im really new with rails so i need your valuable help ... I have a database view in my db called "graph_hospital_vacant_by_band" mysql> desc graph_hospital_vacant_by_band; ...
1
vote
1answer
39 views

rails search result

Now I can search only from videos page, How to add search from any page ot the site? When I want to search from another controller search doesn't redirect to index my ...
0
votes
1answer
49 views

Rails: Show search results based on url

I'm using "mongoid_search" to power a search on the index page of my app. The url, which returns results looks something like: "/profiles?utf8=✓&profile_search=San+Antonio%2C+TX" How would I go ...
0
votes
2answers
75 views

Ruby on Rails search 2 models

Right... I've spent 3 days trying to do this myself to no a vale. I have 2 models called Film and Screenings. Screenings belongs_to Film, Film has_many Screenings. The Film has certain ...
0
votes
2answers
50 views

How do I search for multiple records in a search form?

I am trying to allow the user to be able to choose multiple records in a field on the search form. Something like this: <%= f.input_field :neighborhood_id, collection: Neighborhood.order(:name), ...
0
votes
2answers
64 views

Rails 3: Search method returns all models instead of specified

What I'm trying to do: I have a model "Recipe" in which I defined a method "search" that takes an array of strings from checkboxes (I call them tags), and a single string. The idea is to search the db ...
0
votes
0answers
76 views

Rails / Sunspot / Solr: Duplicate indexing on inherited classes

We are building a Ruby on Rails application which uses Solr as a search engine. The following version numbers could be relevant to the issue described in the next paragraphs: Ruby: 1.9.2 Rails: ...
0
votes
0answers
36 views

How to organize a search in the RoR on many conditions? (filters in application)

I use Thinking Sphinx in my Ruby on Rails application for search. In model I use sphinx scopes. # Sphinx for Items define_index do indexes name has status_id, year end ...
0
votes
0answers
37 views

Set a minimum query length on server side (Rails & Ransack)

I'm using the Ransack gem on Rails 3.2 and am looking to set a minimum query character length on the server side, so that clients (for example) will get back something like an HTTP status error if ...
0
votes
0answers
98 views

Rails Search Multiple Field in Mongoid

I'm having trouble adding more search fields to my form to search for orders not only by order token but also by name, status and created_at time. I followed the RailsCasts recipe for simple search ...
-4
votes
1answer
95 views

Adding filters with checkboxes and accessing particular thing item exist in row [closed]

please guide me how to add filters using check-boxes when we use sunspot search in Rails? - if @search.facet(:amenities) %h3 Amenities - @search.facet(:amenities).rows.each do |c| - unless ...
0
votes
1answer
38 views

How to get a unique list of associated results?

I want to search for a Product and get all the categories from all the products from the search result to create a filter interface like github (The "Languages" menu in the sidebar). @products = ...
0
votes
1answer
129 views

Rspec testing a controller search method

I'm trying to test the behavior of a custom search method in my controller: #RecordingsController def search # raise params.inspect @search = params[:search] searches = [] ...
0
votes
2answers
52 views

How would I use an sql query with .where to check for a match between a date column and a string?

I have a hunch that this is sort of a hack already, but I was curious about this nonetheless: Say I have this: current_user.memories.where("content LIKE '%#{search}%' OR note LIKE '%#{search}%' OR ...
0
votes
0answers
22 views

how to implement search through association

how to implement search through association in my case? I have those models below. Model product.rb class Product < ActiveRecord::Base belongs_to :category has_and_belongs_to_many :rules ...
0
votes
1answer
80 views

Rails MetaSearch Associations Undefined Method

I am working with a rails app and have begun to work on a search function using metasearch but I am having troubles getting the correct method for the search. For example I have a model (Proposal) ...
1
vote
1answer
52 views

how to do a search across many to many tables with rails 3

I have three tables containing details of moulds (molds) and their patterns linked together via a genres table : Mould table id : integer name : string Pattern table id : integer name : string ...
-4
votes
1answer
76 views

How do I create a search engine or modify an existing one for searches only within a website?

I am creating a website using Ruby on Rails, HTML (of course), CSS (of course), JavaScript, Sqlite 3, and Ajax while running an Apache server. I want to have a search feature that only searches for ...

1 2 3 4 5 8