class FReCon::Record

Public: The Record model.

Public Instance Methods

competition() click to toggle source

Public: Get this Record's Match's Competition

# File lib/frecon/models/record.rb, line 26
def competition
        match.competition
end
robot() click to toggle source

Public: Get this Record's Participation's Robot

# File lib/frecon/models/record.rb, line 31
def robot
        participation.robot
end
team() click to toggle source

Public: Get this Record's Participation's Robot's Team

# File lib/frecon/models/record.rb, line 36
def team
        participation.robot.team
end