Skip to content

Instantly share code, notes, and snippets.

@ericdke
Created December 16, 2013 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericdke/7993889 to your computer and use it in GitHub Desktop.
Save ericdke/7993889 to your computer and use it in GitHub Desktop.
percentage method
class Numeric
def percent_of(n)
self.to_f / n.to_f * 100.0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment