Sha256: b5aef5e18f63f9ec086acf45864be9803ae69f22cefe5c7fc1fd8aea9ce41eff
Contents?: true
Size: 842 Bytes
Versions: 3
Compression:
Stored size: 842 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = DeveloperDataId.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 DeveloperDataId FIT message. class DeveloperDataId < FitDataRecord # Create a new DeveloperDataId object. # @param field_values [Hash] Hash that provides initial values for certain # fields. def initialize(field_values = {}) super('developer_data_id') set_field_values(field_values) end def create_global_definition end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fit4ruby-2.0.0 | lib/fit4ruby/DeveloperDataId.rb |
fit4ruby-1.7.0 | lib/fit4ruby/DeveloperDataId.rb |
fit4ruby-1.6.2 | lib/fit4ruby/DeveloperDataId.rb |