Skip to content

Instantly share code, notes, and snippets.

@matteomanzo
Created April 18, 2018 08:15
Show Gist options
  • Save matteomanzo/e07fc472cbbac24e2117a3f07dfcad74 to your computer and use it in GitHub Desktop.
Save matteomanzo/e07fc472cbbac24e2117a3f07dfcad74 to your computer and use it in GitHub Desktop.
def word_weight(word)
case word
when "batter"
0.0
when /\Ab[ao]ttle\z/
0.0
else
1.0
end
end
Mastico::Query.new(fields: [:author], query: "Botticello", word_weight: method(:word_weight)).apply(chewy_query).load.to_a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment