apple_music_library 0.13.1 → 0.13.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: 8b462ccaf045f625899fb62099d659bbe3f7a3b8ea46cc59e376623656ed2646
4
- data.tar.gz: f96477c3e0fc3243e44753970cd15c9ead277e3f8fed96d822dbdbeeabd3b328
3
+ metadata.gz: 50f3e5425e1ef5cd751ab85f45593aaa1bca9122e886d6f12780dfb503db5ad6
4
+ data.tar.gz: d817e40ffb7df005b3169b7ef9ac8e49a917312313bec4fcca7b31c91ac4ad1b
5
5
  SHA512:
6
- metadata.gz: 559439425509081f89e3386783a4825529c85bcca29b48b0db7a962fdf8ea3221db926876db353d9663283c1c8b6f25dcd77444926a6778567be9868d6c1239a
7
- data.tar.gz: f6d84390ebd8fcb18a9fea28ced25edb255cac78038fef702e7744195b240c666d6fea4201e8de00cebc2ffec487746b456fb6d55162203bd9b97da822c6d357
6
+ metadata.gz: 7db558674bc78b1fc102be423492132f28fc6922b88204a7a702474f8a7161e1541a648f75496ceb4721c320b1bb5e850e62562b8a00d8d74aaf95d8f37776bd
7
+ data.tar.gz: 2d14b9da9c7f61cfeefa4e96a1d43ca7f3831135a187e2a39b60f832896209eff9b2d23c818e9ef0f5c24b458ba1a6a27f185aad33df6e6b86fd7e3a26191af3
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  ## [Unreleased]
4
4
  - Ability to print out playlist folder hierarchy
5
5
 
6
+ ## 0.13.2 - 2022-03-16
7
+ ### Fixed
8
+ - Fixed bug where tracks with empty artist names would throw an exception
9
+
6
10
  ## 0.13.1 - 2022-03-16
7
11
  ### Fixed
8
12
  - Now strips leading/trailing whitespace from artist and track names
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- apple_music_library (0.13.1)
4
+ apple_music_library (0.13.2)
5
5
  facets (~> 3.1)
6
6
  plist (~> 3.6)
7
7
 
@@ -6,7 +6,7 @@ module AppleMusicLibrary
6
6
  @@artists = {}
7
7
 
8
8
  def initialize(name)
9
- @name = name.strip
9
+ @name = name&.strip
10
10
  @albums = []
11
11
  @tracks = []
12
12
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppleMusicLibrary
4
- VERSION = "0.13.1"
4
+ VERSION = "0.13.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apple_music_library
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.1
4
+ version: 0.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd Gehman