Sha256: 135a3956b27a93fb82b3c30ec60b5753d9e3431c47d71493dc1359df78afb1f6

Contents?: true

Size: 288 Bytes

Versions: 1

Compression:

Stored size: 288 Bytes

Contents

module Xmlsoccer

  class Config

  	DEMO = "Demo"
    FULL = "Full"
    DEMO_URL = "http://www.xmlsoccer.com/FootballDataDemo.asmx?WSDL"
    FULL_URL = "http://www.xmlsoccer.com/FootballData.asmx?WSDL"

    def self.valid_type?(type)
      [DEMO, FULL].include?(type)
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xmlsoccer-0.1.0 lib/xmlsoccer/config.rb