Skip to content

Instantly share code, notes, and snippets.

@jgaskins
Created April 10, 2013 15:57
Show Gist options
  • Save jgaskins/5355923 to your computer and use it in GitHub Desktop.
Save jgaskins/5355923 to your computer and use it in GitHub Desktop.
Force integer division to BigDecimal
require 'bigdecimal'
class Fixnum
def / other
BigDecimal.new(self) / other
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment