Skip to content

Instantly share code, notes, and snippets.

@Supernats
Created January 29, 2016 23:25
Show Gist options
  • Select an option

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

Select an option

Save Supernats/c97f3782a47ec72852c2 to your computer and use it in GitHub Desktop.
module Refinements::StringNumericalConversions
refine String do
def to_integer
banana
Integer(self)
rescue ArgumentError
nil
end
private
def banana
puts "I am a banana!"
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