Skip to content

Instantly share code, notes, and snippets.

@juliandunn
Created June 11, 2014 19:44
Show Gist options
  • Save juliandunn/4e4d9b52136815279808 to your computer and use it in GitHub Desktop.
Save juliandunn/4e4d9b52136815279808 to your computer and use it in GitHub Desktop.
Monkeypatching NilClass to clarify what the heck is meant by "NoMethodError: undefined method `[]' for nil:NilClass"
class NilClass
def []
raise "What the hell, dawg, you can't access an element of nil"
end
def [](a)
raise "What the hell, dawg, you can't access element #{a} of nil"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment