Sha256: fe70741d70a53792dbc9a7e635d6179ad09a8b712e2ebb262a895ee07ed46e21
Contents?: true
Size: 595 Bytes
Versions: 1
Compression:
Stored size: 595 Bytes
Contents
require 'text-data-tools' class CodeRunner class Trinity # this module provides easy access to the Trinity textbased output data # by defining a TextDataFile for every text output file. See the documentation # for TextDataTools for more information. module OutputFiles def info_outfile TextDataTools::Named::DataFile.new(@directory + '/' + @run_name + '.info', ':') end def time_outfile TextDataTools::Column::DataFile.new(@directory + '/' + @run_name + '.time', true, /\S+/, /\w+/) end end include OutputFiles end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trinitycrmod-0.1.0 | lib/trinitycrmod/output_files.rb |