Skip to content

Instantly share code, notes, and snippets.

@Supernats
Created July 30, 2015 18:31
Show Gist options
  • Select an option

  • Save Supernats/c37d387cc9c52870f5b8 to your computer and use it in GitHub Desktop.

Select an option

Save Supernats/c37d387cc9c52870f5b8 to your computer and use it in GitHub Desktop.
module Refinements::StringNumericalConversions
refine String do
def to_integer
Integer(self)
rescue ArgumentError
nil
end end
refine NilClass do
def to_integer; end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment