wahanegi/vibereport

View on GitHub
app/helpers/common_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CommonHelper
  def bytes_to_megabytes(bytes)
    megabytes = bytes.to_f / 1_048_576
    format('%.1f', megabytes)
  end
end