Sha256: 9bd6b6c373c6776648e4454a46a9500f80e3067dbe974fdc5952e3da696f82a8

Contents?: true

Size: 337 Bytes

Versions: 1

Compression:

Stored size: 337 Bytes

Contents

module Trackerific
  module SOAP
    module WSDL
      ROOT = File.expand_path("../../../../vendor/wsdl", __FILE__)

      def self.path(name)
        path = File.join(ROOT, "#{name}.wsdl")

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

        path
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trackerific-0.7.2 lib/trackerific/soap/wsdl.rb