Skip to content

Instantly share code, notes, and snippets.

@crmaxx
Created June 16, 2015 20:22
Show Gist options
  • Select an option

  • Save crmaxx/1e9ca8b2cf249f3af4ed to your computer and use it in GitHub Desktop.

Select an option

Save crmaxx/1e9ca8b2cf249f3af4ed to your computer and use it in GitHub Desktop.
class String
def is_number?
true if Float(self) rescue false
end
def includes?(ary)
ary.each do |el|
return true if self.include?(el)
end
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment