Sha256: 6a84bfd16e5adea910f18eb55a11311a26787744c90a9920fca9675e1283bacc

Contents?: true

Size: 471 Bytes

Versions: 16

Compression:

Stored size: 471 Bytes

Contents

require_relative 'tempo_run'

module Runby
  module RunTypes
    # The "fast tempo" pace roughly equates to your half-marathon pace.
    #  It's a pace you could maintain for about an hour, if pressed.
    class FastTempoRun < TempoRun
      def description
        'Fast Tempo Run'
      end

      def pace(five_k_time, distance_units = :km)
        fast = @fast_pace_data.calc(five_k_time, distance_units)
        PaceRange.new(fast, fast)
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
runby_pace-0.6.91 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.90 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.89 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.88 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.87 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.5.86 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.5.85 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.84 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.83 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.82 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.81 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.79 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.78 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.4.77 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.3.76 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.2.75 lib/runby_pace/run_types/fast_tempo_run.rb