class Sportradar::Nfl::TeamDepthCharts

Public Class Methods

perform() click to toggle source
# File lib/sportradar/nfl/team_depth_charts.rb, line 4
def self.perform
  new.perform
end

Public Instance Methods

perform() click to toggle source
# File lib/sportradar/nfl/team_depth_charts.rb, line 8
def perform
  team_abbreviations.each do |team_abbreviation|
    TeamDepthChart.new(team_abbreviation: team_abbreviation).save
  end

  nil
end