Skip to content

Instantly share code, notes, and snippets.

@benders
Created January 4, 2012 03:11
Show Gist options
  • Save benders/1558293 to your computer and use it in GitHub Desktop.
Save benders/1558293 to your computer and use it in GitHub Desktop.
Prevent accidentally calling #[] on a number
# Prevent accidentally calling #[] on a number, we don't bit-slice in this house
[Fixnum, Bignum].each do |k|
k.class_eval do
def [](*args)
raise NoMethodError, "Calling #[] on numbers is wrong. Don't do it."
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment