Sha256: b994d8f31b890606eb549c11c0ac8cfec2a35bf8d403f8fb0a032e059de242fb
Contents?: true
Size: 615 Bytes
Versions: 128
Compression:
Stored size: 615 Bytes
Contents
module Sportradar module Api class Football::StatPack::FieldGoals < Football::StatPack attr_accessor :attempts, :pct, :made, :blocked, :yards, :avg_yards, :longest def set_stats @attempts = response["attempts"] || response["att"] @made = response["made"] @blocked = response["blocked"] || response['blk'] @yards = response["yards"] || response['yds'] @avg_yards = response["avg_yards"] @longest = response["longest"] || response['lg'] @pct = response["pct"] || (@made.to_f / @attempts.to_i) end end end end
Version data entries
128 entries across 128 versions & 1 rubygems