Sha256: e91633428905073d263d937431fe5476f0b60f1b234816f750522fa89a2079fa

Contents?: true

Size: 410 Bytes

Versions: 23

Compression:

Stored size: 410 Bytes

Contents

require_relative 'tempo_run'

module Runby
  module RunTypes
    # The "slow tempo" pace roughly equates to your marathon pace.
    class SlowTempoRun < TempoRun
      def description
        'Slow Tempo Run'
      end

      def lookup_pace(five_k_time, distance_units = :km)
        slow = @slow_pace_calculator.calc(five_k_time, distance_units)
        PaceRange.new(slow, slow)
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
runby_pace-0.6.99 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.97 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.94 lib/runby_pace/run_types/slow_tempo_run.rb