Sha256: 1589c41dea715de2ebcccda6d791920dd8e29027fb8ac646a76e159f52f6d890
Contents?: true
Size: 595 Bytes
Versions: 39
Compression:
Stored size: 595 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = FitFilter.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. # module Fit4Ruby class FitFilter < Struct.new(:record_numbers, :record_indexes, :field_names, :ignore_undef) def initialize super self[:ignore_undef] = false end end end
Version data entries
39 entries across 39 versions & 1 rubygems