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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1 -1
- data/lib/songstats_sdk/resources/base.rb +1 -1
- data/lib/songstats_sdk/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 678efe691b09dd1b199a958941452a11a379c35b5ec2d513770cbb7b4dfd4916
|
|
4
|
+
data.tar.gz: 7a61b9da530280690cc0331313279265a3ee7ef14df25e7c99c175b5532057ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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://
|
|
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.
|
|
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|
|
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.
|
|
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:
|
|
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:
|
|
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: []
|