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