Sha256: b3ee9c86d9c522b00529a3204a5820563c7fc033471dce3d27da3d55668792c9

Contents?: true

Size: 250 Bytes

Versions: 19

Compression:

Stored size: 250 Bytes

Contents

module RunbyPace

  class PaceRange
    attr_reader :fast, :slow

    def initialize(fast, slow)
      @fast = RunbyPace::PaceTime.new(fast)
      @slow = RunbyPace::PaceTime.new(slow)
    end

    def to_s
      "#{@fast}-#{@slow}"
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
runby_pace-0.2.56 lib/runby_pace/pace_range.rb
runby_pace-0.2.55 lib/runby_pace/pace_range.rb
runby_pace-0.2.50 lib/runby_pace/pace_range.rb
runby_pace-0.2.48 lib/runby_pace/pace_range.rb
runby_pace-0.2.45 lib/runby_pace/pace_range.rb
runby_pace-0.2.43 lib/runby_pace/pace_range.rb
runby_pace-0.2.41 lib/runby_pace/pace_range.rb
runby_pace-0.2.39 lib/runby_pace/pace_range.rb
runby_pace-0.2.37 lib/runby_pace/pace_range.rb
runby_pace-0.2.36 lib/runby_pace/pace_range.rb
runby_pace-0.2.35 lib/runby_pace/pace_range.rb
runby_pace-0.2.34 lib/runby_pace/pace_range.rb
runby_pace-0.2.33 lib/runby_pace/pace_range.rb
runby_pace-0.2.32 lib/runby_pace/pace_range.rb
runby_pace-0.2.31 lib/runby_pace/pace_range.rb
runby_pace-0.2.28 lib/runby_pace/pace_range.rb
runby_pace-0.2.22 lib/runby_pace/pace_range.rb
runby_pace-0.2.1 lib/runby_pace/pace_range.rb
runby_pace-0.2.0 lib/runby_pace/pace_range.rb