Sha256: b2144997ce7efe5db11f482f9987ba116a80e85b884d0de7c7ebf8850485f409
Contents?: true
Size: 450 Bytes
Versions: 7
Compression:
Stored size: 450 Bytes
Contents
# encoding: utf-8 module SportDb module Model ############################################################# # collect depreciated or methods for future removal here # - keep for now for compatibility (for old code) class Group def add_teams_from_ary!( team_keys ) team_keys.each do |team_key| team = Team.find_by_key!( team_key ) self.teams << team end end end # class Group end # module Model end # module SportDb
Version data entries
7 entries across 7 versions & 1 rubygems