Sha256: 851cce80636f724165f5647dc86a30752aad47c3dd441605226ea5e6c6066046
Contents?: true
Size: 574 Bytes
Versions: 4
Compression:
Stored size: 574 Bytes
Contents
# Part of the Optimus package for managing E-Prime data # # Copyright (C) 2008 Board of Regents of the University of Wisconsin System # # Written by Nathan Vack <njvack@wisc.edu>, at the Waisman Laborotory for Brain # Imaging and Behavior, University of Wisconsin - Madison # This almost completely delegates to TabfileParser require 'tabfile_parser' module Eprime class Reader class EprimetabParser < TabfileParser def initialize(file, options = {}) options = options.merge(:skip_lines => 3) super(file, options) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
optimus-ep-0.5.5 | lib/eprimetab_parser.rb |
optimus-ep-0.5.6 | lib/eprimetab_parser.rb |
optimus-ep-0.5 | lib/eprimetab_parser.rb |
optimus-ep-0.6.0 | lib/eprimetab_parser.rb |