Sha256: 23973076fa75288c4c44ca61c12b3e99ed144f268fa63ba3a4769982565d3989

Contents?: true

Size: 598 Bytes

Versions: 4

Compression:

Stored size: 598 Bytes

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = Workout.rb -- Fit4Ruby - FIT file processing library for Ruby
#
# Copyright (c) 2021 by Chris Schlaeger <cs@taskjuggler.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#

require 'fit4ruby/FitDataRecord'

module Fit4Ruby

  class Workout < FitDataRecord

    def initialize(field_values = {})
      super('workout')
      set_field_values(field_values)
    end

    def check(index)
    end

  end

end


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fit4ruby-3.13.0 lib/fit4ruby/Workout.rb
fit4ruby-3.12.0 lib/fit4ruby/Workout.rb
fit4ruby-3.11.0 lib/fit4ruby/Workout.rb
fit4ruby-3.10.0 lib/fit4ruby/Workout.rb