Module: Eco::Data::FuzzyMatch::StopWords

Included in:
InstanceMethods
Defined in:
lib/eco/data/fuzzy_match/stop_words.rb

Constant Summary collapse

PREPOSITIONS =
[
  "aboard", "about", "above", "across", "after", "against", "along", "amid", "among", "around", "as", "at",
  "before", "behind", "below", "beneath", "beside", "between", "beyond", "but", "by",
  "concerning", "considering", "despite", "down", "during", "except", "following", "for", "from",
  "in", "inside", "into", "like", "minus", "near", "next",
  "of", "off", "on", "onto", "opposite", "out", "outside", "over", "past", "per", "plus",
  "regarding", "round", "save", "since", "than", "through", "till", "to", "toward",
  "under", "underneath", "unlike", "until", "up", "upon", "versus", "via",
  "with", "within", "without"
]
PRONOUNS =
[
  "all", "another", "any", "anybody", "anyone", "anything", "as", "aught",
  "both", "each", "each other", "either", "enough", "everybody", "everyone", "everything",
  "few", "he", "her", "hers", "herself", "him", "himself", "his", "I", "idem", "it", "its", "itself",
  "many", "me", "mine", "most", "my", "myself", "naught", "neither", "no one", "nobody", "none", "nothing", "nought",
  "one", "one another", "other", "others", "ought", "our", "ours", "ourself", "ourselves",
  "several", "she", "some", "somebody", "someone", "something", "somewhat", "such", "suchlike",
  "that", "thee", "their", "theirs", "theirself", "theirselves", "them", "themself", "themselves", "there",
  "these", "they", "thine", "this", "those", "thou", "thy", "thyself", "us",
  "we", "what", "whatever", "whatnot", "whatsoever", "whence", "where", "whereby", "wherefrom",
  "wherein", "whereinto", "whereof", "whereon", "wherever", "wheresoever", "whereto", "whereunto",
  "wherewith", "wherewithal", "whether", "which", "whichever", "whichsoever", "who", "whoever", "whom",
  "whomever", "whomso", "whomsoever", "whose", "whosever", "whosesoever", "whoso", "whosoever",
  "ye", "yon", "yonder", "you", "your", "yours", "yourself", "yourselves"
]
ARTICLES =
["a", "an", "the"]