Skip to content

Instantly share code, notes, and snippets.

@k-tsj
Created April 12, 2016 13:10
Show Gist options
  • Save k-tsj/75ac6ce388f0f341fd0701bc2ebee2eb to your computer and use it in GitHub Desktop.
Save k-tsj/75ac6ce388f0f341fd0701bc2ebee2eb to your computer and use it in GitHub Desktop.
module DidYouMean
class MethodNameChecker
prepend Module.new {
PY2RB = {
String => {
lower: %i(downcase)
},
Object => {
len: %i(obj.length)
}
}
def corrections
PY2RB.dig(receiver.class, method_name) || super
end
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment