1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-03 13:30:02 +00:00
Files
wrestlingdev.com/app/models/bout.rb
2014-12-15 13:12:39 -05:00

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