Sha256: bc2556d3be5f236964b24d0f40fec6efa603307cef7990ea348740a2ecaec5e8
Contents?: true
Size: 612 Bytes
Versions: 4
Compression:
Stored size: 612 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = WorkoutStep.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 WorkoutStep < FitDataRecord def initialize(field_values = {}) super('workout_step') 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/WorkoutStep.rb |
fit4ruby-3.12.0 | lib/fit4ruby/WorkoutStep.rb |
fit4ruby-3.11.0 | lib/fit4ruby/WorkoutStep.rb |
fit4ruby-3.10.0 | lib/fit4ruby/WorkoutStep.rb |