sportradar-api 0.9.17 → 0.9.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/sportradar/api/nfl/game.rb +2 -1
- data/lib/sportradar/api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba18ab0991dc8e994b05ff36b6055b949b31de3f
|
|
4
|
+
data.tar.gz: 8c95a41e620651f878d66d3615131e979298a5e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf2a789384a25c160cd179895db5614f33c30cb328c48939bc10526342c38797c9e6e8d3d91fafe28eeef4aeeaa8e03612d7654229d41c9c77c68a5567747210
|
|
7
|
+
data.tar.gz: c1a90756a29180c31e3ed71214b21bb5b6fcae3bdc6ca87824e9f0aa762ef863462b64b064be69fb98ac82c9e44d2f5d24aca83cf86c8a2e195eed188ffad9cb
|
data/Gemfile.lock
CHANGED
|
@@ -103,7 +103,7 @@ module Sportradar
|
|
|
103
103
|
end
|
|
104
104
|
|
|
105
105
|
def status_description
|
|
106
|
-
{
|
|
106
|
+
status_description = {
|
|
107
107
|
"scheduled" => "The game is currently scheduled to occur.",
|
|
108
108
|
"inprogress" => "The game is currently in progress.",
|
|
109
109
|
"halftime" => "The game is currently at the half.",
|
|
@@ -115,6 +115,7 @@ module Sportradar
|
|
|
115
115
|
"flex-schedule" => "The game is currently scheduled to occur on a specific date and time, however, it will more than likely be moved to a different time for broadcast purposes.",
|
|
116
116
|
"time-tbd" => "The game is scheduled to occur, the date is known, but the start time has not been determined.",
|
|
117
117
|
}
|
|
118
|
+
status_descriptions[status] if status
|
|
118
119
|
end
|
|
119
120
|
|
|
120
121
|
end
|