YutaGoto/salmon_run

View on GitHub
lib/extend/float.rb

Summary

Maintainability
A
0 mins
Test Coverage
# typed: true
class Float
  def seconds_to_hours
    self / 3600
  end
end