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