Module: LeaguesetHelper

Included in:
Kernel
Defined in:
lib/leagues.rb

Instance Method Summary collapse

Instance Method Details

#parse_leagueset(txt, autofill: nil) ⇒ Object



34
35
36
# File 'lib/leagues.rb', line 34

def parse_leagueset( txt, autofill: nil )       
    Leagueset.parse( txt, autofill: autofill )
end

#parse_leagueset_args(args, autofill: nil) ⇒ Object



37
38
39
# File 'lib/leagues.rb', line 37

def parse_leagueset_args( args, autofill: nil ) 
    Leagueset.parse_args( args, autofill: autofill )
end

#read_leagueset(path, autofill: nil) ⇒ Object

note - make read_leagueset & friends public/global by default - why? why not?



31
32
33
# File 'lib/leagues.rb', line 31

def read_leagueset( path, autofill: nil )       
    Leagueset.read( path, autofill: autofill )
end