Sha256: a1cf7460810f088dc4f3ccf43603f4c69fbcceea9f1569b019a9ed7cba3c2996
Contents?: true
Size: 592 Bytes
Versions: 38
Compression:
Stored size: 592 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = PersonalRecords.rb -- Fit4Ruby - FIT file processing library for Ruby # # Copyright (c) 2014 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 PersonalRecords < FitDataRecord def initialize(field_values = {}) super('personal_records') set_field_values(field_values) end end end
Version data entries
38 entries across 38 versions & 1 rubygems