class ConnectFourCli::NoChecker

Public Class Methods

new() click to toggle source
Calls superclass method ConnectFourCli::Checker::new
# File lib/connect_four_cli/checker.rb, line 26
def initialize
  super(:none)
end

Public Instance Methods

==(other_checker) click to toggle source
# File lib/connect_four_cli/checker.rb, line 30
def ==(other_checker)
  false
end
checker?() click to toggle source
# File lib/connect_four_cli/checker.rb, line 38
def checker?
  false
end
display() click to toggle source
# File lib/connect_four_cli/checker.rb, line 34
def display
  "0"
end