class FileInterpreter

Public Class Methods

new(filepath) click to toggle source
# File lib/suds/interpreter/file_interpreter.rb, line 3
def initialize filepath
  # TODO File validation
  @raw_data = open(filepath, 'r').read
end

Public Instance Methods

interpret() click to toggle source
# File lib/suds/interpreter/file_interpreter.rb, line 8
def interpret
  @data = @raw_data
end