module Trackerific::SOAP::WSDL

Constants

ROOT

Public Class Methods

path(name) click to toggle source
# File lib/trackerific/soap/wsdl.rb, line 4
def self.path(name)
  path = File.join(ROOT, "#{name}.wsdl")

  unless File.exists?(path)
    raise IOError, "WSDL not found #{name}", caller
  end

  path
end