Sha256: f54bd7c62de6aec6d8a2ff6ef4b32d9700040f98bf618c82bcee14cceaa9fe74

Contents?: true

Size: 712 Bytes

Versions: 6

Compression:

Stored size: 712 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

# Add our lib to the search path
$: << File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))

require 'eprime_data'
require 'version'
require 'tabfile_writer'
require 'eprime_reader'

module Eprime

  # Raised whenever an input file's type can't be detemined by Eprime::Reader
  class UnknownTypeError < Exception; end
  
  # Raised whenever an input file seems to be damaged
  class DamagedFileError < Exception; end
  
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
optimus-ep-0.5.6 lib/eprime.rb
optimus-ep-0.5.5 lib/eprime.rb
optimus-ep-0.6.0 lib/eprime.rb
optimus-ep-0.6.5 lib/eprime.rb
optimus-ep-0.6.9 lib/eprime.rb
optimus-ep-0.6.91 lib/eprime.rb