Sha256: aad453fe9d14694a0ae91cbe03a2904e3ba67608e45a8757cf74c6c2c391083c
Contents?: true
Size: 580 Bytes
Versions: 1
Compression:
Stored size: 580 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = UserProfile.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 UserProfile < FitDataRecord def initialize(field_values = {}) super('user_profile') set_field_values(field_values) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fit4ruby-0.0.2 | lib/fit4ruby/UserProfile.rb |