thetizzo/nfl_data

View on GitHub
lib/nfl_data/schedule.rb

Summary

Maintainability
A
0 mins
Test Coverage
module NflData
  Schedule = Struct.new(:games, keyword_init: true) {
    def initialize(games: [])
      super
    end

    def to_h
      games.map!(&:to_h)
      super
    end
  }
end