Replace class 'TournamentTable' by 'RoundRobinTable'.
This commit is contained in:
parent
500b412d4e
commit
cfa7e19617
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env ruby
|
||||
require File.expand_path('../lib/lorchess.rb', File.dirname(__FILE__))
|
||||
|
||||
table = LORChess::TournamentTable.new
|
||||
table = LORChess::RoundRobinTable.new
|
||||
puts table.to_html
|
||||
|
@ -1,4 +1,4 @@
|
||||
$:.unshift File.dirname(__FILE__) # for use/testing when no gem is installed
|
||||
|
||||
# Internal requires
|
||||
require 'lorchess/tournament_table.rb'
|
||||
require 'lorchess/round_robin_table.rb'
|
||||
|
@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
module LORChess
|
||||
class TournamentTable
|
||||
class RoundRobinTable
|
||||
|
||||
require 'yaml'
|
||||
|
Loading…
Reference in New Issue
Block a user