module Pipio
Constants
- VERSION
Public Class Methods
parse(logfile_path, my_aliases)
click to toggle source
Parses the log at the given path into a Chat
.
# File lib/pipio.rb, line 29 def self.parse(logfile_path, my_aliases) full_path = File.expand_path(logfile_path) factory = ParserFactory.new(full_path, my_aliases) factory.parser.parse end