Skip to content
View mayzin00's full-sized avatar

Block or report mayzin00

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Numeric search using filterrific in ... Numeric search using filterrific in rails
    1
    If you want to search every keyword including numbers with filterrific in rails, you can use the following search scope.
    2
    
                  
    3
      scope :search_query, lambda { |query|
    4
        return nil  if query.blank?
    5
        terms = query.to_s.downcase.split(/\s+/)