I have just watched the railscast about a simple search form http://railscasts.com/episodes/37-simple-search-form and I want to do something like that in my app, but I don't want to find just results that match perfect.
Like, I have a model named Project with: name, description, key-word1, key-word2.
Given the code taken from the railscast:
models/project.rb
def self.search(search)
if search
find(:all, :conditions => ['name LIKE ?', "%#{search}%"])
else
find(:all)
end
end
If I want to make a search for "Pizza", and I have a project named "Master Pizza Project" with a keyword1 named "MasterPizza" and keyword2 named "Pizza", how would be the code for the project.rb to make this work? Also, case sensitive here would be a problem?
Thanks! :)