class P5_T_34::ExamParser

Attributes

examRip[R]

Public Class Methods

new() click to toggle source
# File lib/P5_T_34/ExamParser.rb, line 10
def initialize()
    @examRip = ExamRipper.new()
end

Public Instance Methods

load(scriptPath) click to toggle source

Carga el script y lo evalua/ejecuta en la clase examRipper

# File lib/P5_T_34/ExamParser.rb, line 14
def load (scriptPath)
    @examRip.instance_eval( File.read( scriptPath ) , scriptPath, 1)
end