Sha256: 7b0077f5971648faf7e61ca7f4f7d8294fe34565e25854421396426808a932e0
Contents?: true
Size: 820 Bytes
Versions: 5
Compression:
Stored size: 820 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = PhysiologicalMetrics.rb -- Fit4Ruby - FIT file processing library for Ruby # # Copyright (c) 2017 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 # This class corresponds to the old_user_profile FIT message. class PhysiologicalMetrics < FitDataRecord # Create a new PhysiologicalMetrics object. # @param field_values [Hash] Hash that provides initial values for certain # fields. def initialize(field_values = {}) super('physiological_metrics') set_field_values(field_values) end end end
Version data entries
5 entries across 5 versions & 1 rubygems