Sha256: 6b991ac63f9a3de736b4df497dfa49c61a0914f8063eebc11f791dc0b16556d6

Contents?: true

Size: 570 Bytes

Versions: 4

Compression:

Stored size: 570 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 ExcelParser < TabfileParser
      def initialize(file, options = {})
        options = options.merge(:skip_lines => 1)
        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/excel_parser.rb
optimus-ep-0.5.6 lib/excel_parser.rb
optimus-ep-0.5 lib/excel_parser.rb
optimus-ep-0.6.0 lib/excel_parser.rb