Class: MLB::GamePaceStats
- Inherits:
-
Shale::Mapper
- Object
- Shale::Mapper
- MLB::GamePaceStats
- Defined in:
- lib/mlb/game_pace.rb
Overview
Represents game pace statistics
Instance Attribute Summary collapse
-
#hits_per_9inn ⇒ Float
Returns hits per 9 innings.
-
#hits_per_game ⇒ Float
Returns hits per game.
-
#pitches_per_9inn ⇒ Float
Returns pitches per 9 innings.
-
#pitches_per_game ⇒ Float
Returns pitches per game.
-
#runs_per_9inn ⇒ Float
Returns runs per 9 innings.
-
#runs_per_game ⇒ Float
Returns runs per game.
-
#season ⇒ String
Returns the season.
-
#sport ⇒ Sport
Returns the sport.
-
#time_per_game ⇒ String
Returns average time per game.
-
#time_per_pitch ⇒ String
Returns average time per pitch.
-
#total_games ⇒ Integer
Returns total games.
-
#total_hits ⇒ Integer
Returns total hits.
-
#total_innings_played ⇒ Float
Returns total innings played.
-
#total_pitches ⇒ Integer
Returns total pitches.
-
#total_runs ⇒ Integer
Returns total runs.
Instance Attribute Details
#hits_per_9inn ⇒ Float
Returns hits per 9 innings
13 |
# File 'lib/mlb/game_pace.rb', line 13 attribute :hits_per_9inn, Shale::Type::Float |
#hits_per_game ⇒ Float
Returns hits per game
37 |
# File 'lib/mlb/game_pace.rb', line 37 attribute :hits_per_game, Shale::Type::Float |
#pitches_per_9inn ⇒ Float
Returns pitches per 9 innings
29 |
# File 'lib/mlb/game_pace.rb', line 29 attribute :pitches_per_9inn, Shale::Type::Float |
#pitches_per_game ⇒ Float
Returns pitches per game
53 |
# File 'lib/mlb/game_pace.rb', line 53 attribute :pitches_per_game, Shale::Type::Float |
#runs_per_9inn ⇒ Float
Returns runs per 9 innings
21 |
# File 'lib/mlb/game_pace.rb', line 21 attribute :runs_per_9inn, Shale::Type::Float |
#runs_per_game ⇒ Float
Returns runs per game
45 |
# File 'lib/mlb/game_pace.rb', line 45 attribute :runs_per_game, Shale::Type::Float |
#season ⇒ String
Returns the season
117 |
# File 'lib/mlb/game_pace.rb', line 117 attribute :season, Shale::Type::String |
#sport ⇒ Sport
Returns the sport
125 |
# File 'lib/mlb/game_pace.rb', line 125 attribute :sport, Sport |
#time_per_game ⇒ String
Returns average time per game
101 |
# File 'lib/mlb/game_pace.rb', line 101 attribute :time_per_game, Shale::Type::String |
#time_per_pitch ⇒ String
Returns average time per pitch
109 |
# File 'lib/mlb/game_pace.rb', line 109 attribute :time_per_pitch, Shale::Type::String |
#total_games ⇒ Integer
Returns total games
61 |
# File 'lib/mlb/game_pace.rb', line 61 attribute :total_games, Shale::Type::Integer |
#total_hits ⇒ Integer
Returns total hits
77 |
# File 'lib/mlb/game_pace.rb', line 77 attribute :total_hits, Shale::Type::Integer |
#total_innings_played ⇒ Float
Returns total innings played
69 |
# File 'lib/mlb/game_pace.rb', line 69 attribute :total_innings_played, Shale::Type::Float |
#total_pitches ⇒ Integer
Returns total pitches
93 |
# File 'lib/mlb/game_pace.rb', line 93 attribute :total_pitches, Shale::Type::Integer |
#total_runs ⇒ Integer
Returns total runs
85 |
# File 'lib/mlb/game_pace.rb', line 85 attribute :total_runs, Shale::Type::Integer |