Sha256: 3dba31938a022ca42e82a5d7158147207bdee12094707411896f439199aa332b
Contents?: true
Size: 665 Bytes
Versions: 1
Compression:
Stored size: 665 Bytes
Contents
#!/usr/bin/env ruby # 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 require 'rubygems' require 'optparse' gem 'optimus-ep' require 'runners/generic_runner' script_name = File.basename(__FILE__) begin txr = Eprime::Runners::GenericRunner.new(Eprime::Transformers::TimingExtractor, script_name, ARGV) txr.process! rescue ArgumentError => e STDERR.puts e.message exit 1 rescue Exception => e STDERR.puts e.message exit 2 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
optimus-ep-0.6.0 | bin/extract_timings |