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.119 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.118 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.117 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.116 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.115 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.114 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.113 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.112 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.111 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.110 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.109 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.108 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.106 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.105 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.104 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.103 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.102 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.101 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.100 lib/runby_pace/run_types/slow_tempo_run.rb
runby_pace-0.6.98 lib/runby_pace/run_types/slow_tempo_run.rb