Skip to content

Instantly share code, notes, and snippets.

View diegofmp's full-sized avatar

Diego Monge diegofmp

View GitHub Profile
@diegofmp
diegofmp / search.rb
Last active May 21, 2017 20:24
"Advanced search" on rails & will_paginate gem
class Search < ActiveRecord::Base
def search_posts
posts= Post.all
posts= posts.contains_key(keyboards) if keyboards.present?
posts= posts.wSize(size_id) if size_id.present?
return posts
end
end