mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-03 13:30:02 +00:00
11 lines
170 B
Ruby
11 lines
170 B
Ruby
class Bout
|
|
attr_accessor :w1, :w2, :tournament_id
|
|
def self.all
|
|
ObjectSpace.each_object(self).to_a
|
|
end
|
|
|
|
def self.count
|
|
all.count
|
|
end
|
|
|
|
end |