ahl_scraper 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -5
- data/Rakefile +4 -0
- data/lib/ahl_scraper/resources/seasons/team.rb +1 -0
- data/lib/ahl_scraper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3e4430a39581a934ebf5d3513e007736adb1b24b384468fe21a2db916ec44c8
|
4
|
+
data.tar.gz: 2a8ed5d74db57a07651f18e456c6f275d41801512f5c5a632e0630030af62d4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b02c8b0d834ea69ceaad08077e2d84a7fbe75ad327987a77ccce96500ae4f4b8f6a7ec9215e89e1221788ba0c0441c23200febb526cfd9bc6297ea7b71b5b9da
|
7
|
+
data.tar.gz: a773e783e8df81e10e2ce323cc3d53ca6e94a0f11fe1bc8d58d16b669fe701d1e32baf7be2e9f6cff80dc258a4005f15200c78f37b3199d6134dbc10d2391c2d
|
data/CHANGELOG.md
CHANGED
@@ -1,28 +1,38 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.3.5
|
4
|
+
|
5
|
+
### Developer
|
6
|
+
|
7
|
+
- Add ability to use `rake console` to access gem in console to do manual testing
|
8
|
+
|
9
|
+
### Seasons::Team
|
10
|
+
|
11
|
+
- Add Coachella Valley Firebirds to naming hash
|
12
|
+
|
3
13
|
## 0.3.4
|
4
14
|
|
5
|
-
|
15
|
+
### PlayoffBrackets::Series
|
6
16
|
|
7
17
|
- Add new series wins required for current playoffs (2022 with id `76`)
|
8
18
|
|
9
19
|
## 0.3.3
|
10
20
|
|
11
|
-
|
21
|
+
### Developer
|
12
22
|
|
13
23
|
- Added `.tool-versions` file for `asdf` package manager use
|
14
24
|
|
15
|
-
|
25
|
+
### PlayoffBrackets::Round
|
16
26
|
|
17
27
|
- Add `active?` attribute which checks if any series is active, if so it returns truthy, else falsey
|
18
28
|
|
19
|
-
|
29
|
+
### PlayoffBrackets::Series
|
20
30
|
|
21
31
|
- Add check for existance of team ids for `active?` attribute to be truthy
|
22
32
|
|
23
33
|
## 0.3.2
|
24
34
|
|
25
|
-
|
35
|
+
### General
|
26
36
|
|
27
37
|
- Changed `.split` to `&.split` and use `.dig` more to not fail when fields don't exist (often on games that have not finished)
|
28
38
|
|
data/Rakefile
CHANGED
@@ -26,6 +26,7 @@ module AhlScraper
|
|
26
26
|
"wilkes-barre-scranton-penguins" => { city: "Wilkes-Barre/Scranton", name: "Penguins", game_file_city: "W-B/Scranton" },
|
27
27
|
"edmonton-road-runners" => { city: "Edmonton", name: "Road Runners" },
|
28
28
|
"henderson-silver-knights" => { city: "Henderson", name: "Silver Knights" },
|
29
|
+
"coachella-valley-firebirds" => { city: "Coachella Valley", name: "Firebirds" },
|
29
30
|
}.freeze
|
30
31
|
|
31
32
|
def initialize(raw_data, division, opts = {})
|
data/lib/ahl_scraper/version.rb
CHANGED
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.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jefftcraig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|