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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b20a1f72dc69a61ddd7568c5ef2eeca67f133bbcdd22f0e94d941ada6ee1e479
4
- data.tar.gz: f3d310aee075a7cd08f3a8d329c359e974816287c4f768e231c4e50643dabc35
3
+ metadata.gz: d3e4430a39581a934ebf5d3513e007736adb1b24b384468fe21a2db916ec44c8
4
+ data.tar.gz: 2a8ed5d74db57a07651f18e456c6f275d41801512f5c5a632e0630030af62d4f
5
5
  SHA512:
6
- metadata.gz: e4b5912e8c6819fd3f45ff7a6f9919fe307ebdf7d554c27d2cebe6bd59452bb5a7f708f86b02bcee4fe1d2be33305264ef39a794d7d7ae5a8f8152b7a6bc4147
7
- data.tar.gz: e99c4087b80330d517b2f73027e82a31b32941b1b5d36741c4be0f969fa2ce7bf9d1dbc7bf0beb12d0507a0f7bd3b01138d4df99c8b2186d06b2732d58ee5499
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
- ## PlayoffBrackets::Series
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
- ## Developer
21
+ ### Developer
12
22
 
13
23
  - Added `.tool-versions` file for `asdf` package manager use
14
24
 
15
- ## PlayoffBrackets::Round
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
- ## PlayoffBrackets::Series
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
- ## General
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
@@ -6,3 +6,7 @@ require "rspec/core/rake_task"
6
6
  RSpec::Core::RakeTask.new(:spec)
7
7
 
8
8
  task default: :spec
9
+
10
+ task :console do
11
+ exec "irb -r ahl_scraper -I ./lib"
12
+ end
@@ -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 = {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AhlScraper
4
- VERSION = "0.3.4"
4
+ VERSION = "0.3.5"
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.3.4
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-01 00:00:00.000000000 Z
11
+ date: 2022-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json