class T90X::Round

Attributes

name[R]
type[R]

Public Class Methods

new(name, type = Round::Type::CLASSIC) click to toggle source
# File lib/t90x/round.rb, line 6
def initialize(name, type = Round::Type::CLASSIC)
  @name = name
  @type = type
end

Public Instance Methods

days() click to toggle source
# File lib/t90x/round.rb, line 11
def days
  @days ||= DaysList.new(@type).days
end