pricehubble 3.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af15a74a0241f0a811ce8979c608d1583c8beed92a5f355c79e0538da31c8e42
4
- data.tar.gz: da3ad4c3ab9cc27245a5e04b6a505316791f639646eb1ac3612a8619f5072fe3
3
+ metadata.gz: 8da97708d9578780d70a6bb5ad7a8c4c165c62aa7ae22f01fe3388e73aaee9a3
4
+ data.tar.gz: 5d830e45a1389de8ba4db4e345b6dd1d4b1d7a2575511c1ace44082446b16f50
5
5
  SHA512:
6
- metadata.gz: c97cd1e461ed897b2e1a2f28aeecb86825a23f35c4ffb797f38b38f90fa36e257eaffe6b850c30f513de8e951effd8386ae9d9712309acfa2161ced8b097b9c4
7
- data.tar.gz: f25b773129e52ab6f3f8e8666b0c7b121149ec2197be78607adfca731a6f17a4c959dcd70ea385faf904d380fe5c5c35d50e4162b7814f6e91c75969727977ea
6
+ metadata.gz: 800084dbcd510d7f302a968336683351986edf87a6fb353c7f409cf17fa69e85c8c6a712e939cfe7601c5a1715044d21dadfd2b55fc45f9fe35adb51acf02891
7
+ data.tar.gz: 38043406badf88833003c8e6bcd5b17a1f640b649deac43ba2451d22813778f3bc9c21f5690da0dcb6601de47700312c1c46cb6c72519560bd8b5311e9ea6091
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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
+
9
+ ### 3.2.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#34](https://github.com/hausgold/pricehubble/pull/34))
12
+
5
13
  ### 3.1.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x and Rails <8.1 support ([#33](https://github.com/hausgold/pricehubble/pull/33))
data/Makefile CHANGED
@@ -138,9 +138,11 @@ endif
138
138
  clean-images:
139
139
  # Clean build images
140
140
  ifeq ($(MAKE_ENV),docker)
141
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
142
- | $(AWK) '{ print $$3 }' \
143
- | $(XARGS) -rn1 $(DOCKER) rmi -f
141
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
142
+ | $(GREP) $(shell basename "`pwd`") \
143
+ | $(AWK) '{ print $$0 }' \
144
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
145
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
144
146
  endif
145
147
 
146
148
  distclean: clean clean-containers clean-images
@@ -20,7 +20,6 @@ if ENV['PRICEHUBBLE_PASSWORD'].blank?
20
20
  puts '> [ERR] Environment variable `PRICEHUBBLE_PASSWORD` is missing.'
21
21
  end
22
22
 
23
- # rubocop:disable Rails/Exit -- because we're not in a Rails application here
24
23
  if errors
25
24
  puts
26
25
  puts '> Usage:'
@@ -29,4 +28,3 @@ if errors
29
28
  puts "> $ #{$PROGRAM_NAME} #{ARGV.join(' ')}"
30
29
  exit
31
30
  end
32
- # rubocop:enable Rails/Exit
@@ -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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module PriceHubble
5
5
  # The version of the +price-hubble+ gem
6
- VERSION = '3.1.0'
6
+ VERSION = '3.3.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
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.1.0
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.11
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: []