module Runby # An assortment of mathematical functions related to running. class RunMath def self.predict_five_k_time(distance, time) distance = Distance.new(distance) time = RunbyTime.new(time) end end end