songstats-ruby-sdk 0.2.1 → 0.2.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: 945c6e1633b17ff53c42b955569c8b455e84d9b56dc59bd4699fdd2c8c3bc258
4
- data.tar.gz: a10d50ee87692028ced69241cc27c7114052b257de77843a47168e84a62be5d9
3
+ metadata.gz: 678efe691b09dd1b199a958941452a11a379c35b5ec2d513770cbb7b4dfd4916
4
+ data.tar.gz: 7a61b9da530280690cc0331313279265a3ee7ef14df25e7c99c175b5532057ed
5
5
  SHA512:
6
- metadata.gz: 600020786d908a698420acf2f32de35f52d03f87c25bc8879b2aae8f4dc305f69ee2d0cefeeac49d779bb72f37189fe93d68df7f4f6cd1c02fb590e21cf6773a
7
- data.tar.gz: 54b1799ecf012f835cb5ef34647a297753d394551cb37e1fc12449ffc2e1fa61cca03e9c90482219610908a89dca9d2fe81b60a791af16ff17d7c1c3effdee70
6
+ metadata.gz: 872e844983aea4a1f363044092a89e0aab944ba775d0fa312436e99311da158df01120bf1b1a261a9034b9959a1dcd847f050c8b77954714295098ea35e726d0
7
+ data.tar.gz: 773a5510f81f2084444b7a66882bedcf71d826c84a6945f1227f91d91e0a8e64f83ab01a61758ea133bc8daf4b91df14f3cf3d982dff8f381ca08f3081fbebc4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## [0.2.2] - 2026-09-08
6
+
7
+ ### Changed
8
+
9
+ - Updated API documentation links to `developers.stats.company/songstats`.
10
+
11
+ ### Fixed
12
+
13
+ - Fixed standalone Ruby usage failing during parameter normalization without ActiveSupport loaded.
14
+
5
15
  ## [0.2.1] - 2026-06-14
6
16
 
7
17
  ### Changed
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Official Ruby client for the **Songstats Enterprise API**.
4
4
 
5
5
  📦 RubyGems: https://rubygems.org/gems/songstats-ruby-sdk
6
- 📚 API Documentation: https://docs.songstats.com
6
+ 📚 API Documentation: https://developers.stats.company/songstats<br>
7
7
  🔑 API Key Access: Please contact api@songstats.com
8
8
 
9
9
  ---
@@ -22,7 +22,7 @@ module SongstatsSDK
22
22
  end
23
23
 
24
24
  def normalize_params(params)
25
- return nil if params.blank?
25
+ return nil if params.nil? || params.empty? # rubocop:disable Rails/Blank -- This SDK does not depend on ActiveSupport.
26
26
 
27
27
  normalized = {}
28
28
  params.each do |key, value|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SongstatsSDK
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: songstats-ruby-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Songstats
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2026-06-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Typed Ruby client for Songstats Enterprise API resources.
14
13
  email:
@@ -40,7 +39,6 @@ metadata:
40
39
  bug_tracker_uri: https://github.com/songstats/songstats-ruby-sdk/issues
41
40
  allowed_push_host: https://rubygems.org
42
41
  rubygems_mfa_required: 'true'
43
- post_install_message:
44
42
  rdoc_options: []
45
43
  require_paths:
46
44
  - lib
@@ -55,8 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
53
  - !ruby/object:Gem::Version
56
54
  version: '0'
57
55
  requirements: []
58
- rubygems_version: 3.5.17
59
- signing_key:
56
+ rubygems_version: 4.0.16
60
57
  specification_version: 4
61
58
  summary: Ruby SDK for the Songstats Enterprise API.
62
59
  test_files: []