pricehubble 3.2.0 → 3.3.0
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 +4 -0
- data/lib/price_hubble/configuration_handling.rb +1 -2
- data/lib/price_hubble/identity.rb +1 -2
- data/lib/price_hubble/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: 8da97708d9578780d70a6bb5ad7a8c4c165c62aa7ae22f01fe3388e73aaee9a3
|
|
4
|
+
data.tar.gz: 5d830e45a1389de8ba4db4e345b6dd1d4b1d7a2575511c1ace44082446b16f50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 800084dbcd510d7f302a968336683351986edf87a6fb353c7f409cf17fa69e85c8c6a712e939cfe7601c5a1715044d21dadfd2b55fc45f9fe35adb51acf02891
|
|
7
|
+
data.tar.gz: 38043406badf88833003c8e6bcd5b17a1f640b649deac43ba2451d22813778f3bc9c21f5690da0dcb6601de47700312c1c46cb6c72519560bd8b5311e9ea6091
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 3.3.0 (27 August 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#35](https://github.com/hausgold/pricehubble/pull/35))
|
|
8
|
+
|
|
5
9
|
### 3.2.0 (20 May 2026)
|
|
6
10
|
|
|
7
11
|
* Corrected some RuboCop glitches ([#34](https://github.com/hausgold/pricehubble/pull/34))
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module PriceHubble
|
|
4
4
|
# The top-level configuration handling.
|
|
5
5
|
#
|
|
6
|
-
# rubocop:disable Style/ClassVars -- because we split module code
|
|
6
|
+
# rubocop:disable-next Style/ClassVars -- because we split module code
|
|
7
7
|
module ConfigurationHandling
|
|
8
8
|
extend ActiveSupport::Concern
|
|
9
9
|
|
|
@@ -46,5 +46,4 @@ module PriceHubble
|
|
|
46
46
|
delegate :logger, to: :configuration
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
|
-
# rubocop:enable Style/ClassVars
|
|
50
49
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module PriceHubble
|
|
4
4
|
# Handles all the identity retrieval high-level logic.
|
|
5
5
|
#
|
|
6
|
-
# rubocop:disable Style/ClassVars -- because we split module code
|
|
6
|
+
# rubocop:disable-next Style/ClassVars -- because we split module code
|
|
7
7
|
module Identity
|
|
8
8
|
extend ActiveSupport::Concern
|
|
9
9
|
|
|
@@ -43,5 +43,4 @@ module PriceHubble
|
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
|
-
# rubocop:enable Style/ClassVars
|
|
47
46
|
end
|
data/lib/price_hubble/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pricehubble
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
247
|
- !ruby/object:Gem::Version
|
|
248
248
|
version: '0'
|
|
249
249
|
requirements: []
|
|
250
|
-
rubygems_version: 4.0.
|
|
250
|
+
rubygems_version: 4.0.16
|
|
251
251
|
specification_version: 4
|
|
252
252
|
summary: Ruby client for the PriceHubble REST API
|
|
253
253
|
test_files: []
|