This is a custom Rubocop cop to detect abbreviations in the names of classes, methods, variables, and constants. It does this by taking each definition, splitting it up into individual words, and running it through a spellchecker. The english spellchecker is from [ffi-aspell] and the ruby and html dictionaries are from [spellr]. As a nice side-effect, this helps us to avoid misspellings in our names.
Note that [spellr] and [ffi-aspell] are required for this, but could
be swapped out or removed if desired. Small editing will be needed
to remove them from abbreviations.rb
.