ahl_scraper 0.4.0 → 0.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f42dd5e6d96639ecdac35f8379c64af4071b81baaf3c3b54b8936bc5f8914df
4
- data.tar.gz: b76e71cd02f95bc334eb84df86e4cf433fef6566bf3e2f176f741d9728aee7e3
3
+ metadata.gz: 4cb6864351f4e156b1759caf1ed82f87941de0ffdf3d61c758cae000068ef83b
4
+ data.tar.gz: 0b63022e0aee372d3898eca6597a196e32180891715bef1cba26d89db24cebd7
5
5
  SHA512:
6
- metadata.gz: d81f9eaf408dc34229ed6a28d708747a561ad064a75f547e4204ab33d6dbb93087dc0666847379aff5f6de0ef9b469db4e0c2943f5abc50523a300ce0f33d335
7
- data.tar.gz: 1b84e15ea9401d816813921daa5f036006706916fa5b2c93eeedc23675b9e06cf26b063b8f7127620755214c7ec2b011e698c1130cfedb680573612ddf6b1c03
6
+ metadata.gz: 68b71cb9991ff45231d3b4237dce508f20b9128a1ace3b9e788ade3db0f3f7c589e7a8c6d27f249fd582b6f3a95d1f12c93d3ce6d441456b800792eb2ea98a2c
7
+ data.tar.gz: 82d33aa0f38451778633cb93f4a5c047769b5f88b99b8caa2efdb358cb3f1ae6b0c950d92d4318b267afe804e4fc5d6654c269fe4f7ceb71a155b76dd3951c6c
data/.DS_Store ADDED
Binary file
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 2.7.3
1
+ ruby 2.7.7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Ruby Upgrade
6
+
7
+ - Upgrade Ruby version to `2.7.7`
8
+
9
+ ## 0.4.1
10
+
11
+ ### Games
12
+
13
+ - When a game has `Unofficial Final` status set it to have status `finished`
14
+
3
15
  ## 0.3.8
4
16
 
5
17
  ### Players
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ahl_scraper (0.3.9)
4
+ ahl_scraper (0.4.2)
5
5
  json (~> 2.5.1)
6
6
  nokogiri (~> 1.14.0)
7
7
  rake (~> 13.0.0)
@@ -103,6 +103,7 @@ GEM
103
103
 
104
104
  PLATFORMS
105
105
  arm64-darwin-21
106
+ arm64-darwin-24
106
107
 
107
108
  DEPENDENCIES
108
109
  ahl_scraper!
@@ -117,4 +118,4 @@ DEPENDENCIES
117
118
  webmock (>= 3.8.0)
118
119
 
119
120
  BUNDLED WITH
120
- 2.3.20
121
+ 2.4.7
@@ -352,7 +352,7 @@ module AhlScraper
352
352
 
353
353
  # return "forfeited" if game is a forfeit, need to figure this out if it happens
354
354
 
355
- return "finished" if @raw_data.dig(:details, :final) == "1"
355
+ return "finished" if @raw_data.dig(:details, :final) == "1" || @raw_data.dig(:details, :status) == "Unofficial Final"
356
356
 
357
357
  return "in_progress" if @raw_data.dig(:details, :started) == "1"
358
358
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AhlScraper
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ahl_scraper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - jefftcraig
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2025-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -185,6 +185,7 @@ executables: []
185
185
  extensions: []
186
186
  extra_rdoc_files: []
187
187
  files:
188
+ - ".DS_Store"
188
189
  - ".github/workflows/ci.yml"
189
190
  - ".gitignore"
190
191
  - ".rspec"