Sha256: 2a67f3efff5c08a086b8d563850aef99e9fc134f9dde4a00c1b8bdbbd16c88a0
Contents?: true
Size: 587 Bytes
Versions: 35
Compression:
Stored size: 587 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = fit4ruby.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/FitFile' module Fit4Ruby def self.read(file, filter = nil) FitFile.new.read(file, filter) end def self.write(file, top_level_record) FitFile.new.write(file, top_level_record) end end
Version data entries
35 entries across 35 versions & 1 rubygems