class FootballCli::CLI

Public Instance Methods

live() click to toggle source
# File lib/football_cli/cli.rb, line 20
def live
  handler.live_scores
end
show() click to toggle source
# File lib/football_cli/cli.rb, line 15
def show
  handler.run
end

Private Instance Methods

handler() click to toggle source
# File lib/football_cli/cli.rb, line 26
def handler
  FootballCli::Handler.new(options)
end