HealthWave/suds

View on GitHub
lib/suds/interpreter/file_interpreter.rb

Summary

Maintainability
A
0 mins
Test Coverage

class FileInterpreter < Interpreter
  def initialize filepath
    # TODO File validation
    @raw_data = open(filepath, 'r').read
  end

  def interpret
    @data = @raw_data
  end
end