Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Created December 27, 2008 15:55
Show Gist options
  • Save m0wfo/40265 to your computer and use it in GitHub Desktop.
Save m0wfo/40265 to your computer and use it in GitHub Desktop.
class Array
def include?(value)
self.each do |range|
return true if range.include?(value)
end
return false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment