Skip to content

Instantly share code, notes, and snippets.

@Snarp
Created June 4, 2020 22:22
Show Gist options
  • Save Snarp/c771a8b957fe6446e9fb0c86a4d4e4d8 to your computer and use it in GitHub Desktop.
Save Snarp/c771a8b957fe6446e9fb0c86a4d4e4d8 to your computer and use it in GitHub Desktop.
# percent(55, 556)
# => "09.89%"
def progress_as_percentage(i, total)
"%05.2f%%" % (100.0*i/total)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment