class SportDb::Import::Club

Public Class Methods

parse( txt ) click to toggle source
# File lib/sportdb/formats.rb, line 117
def self.parse( txt )  ClubReader.parse( txt ); end
parse_props( txt ) click to toggle source
# File lib/sportdb/formats.rb, line 120
def self.parse_props( txt )  ClubPropsReader.parse( txt ); end
read( path ) click to toggle source
# File lib/sportdb/formats.rb, line 116
def self.read( path )  ClubReader.read( path ); end
read_props( path ) click to toggle source
# File lib/sportdb/formats.rb, line 119
def self.read_props( path )  ClubPropsReader.read( path ); end