pricehubble 3.1.0 → 3.2.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: e154bb5eb5d71b0eec3432180ef86577489a5b5d1cc7c362fc242ff94bedaf00
4
+ data.tar.gz: a01e63c68f8fd3994ecfb31ce45f04586b9dd2d86f721b07728caf2b2308f826
5
5
  SHA512:
6
- metadata.gz: c97cd1e461ed897b2e1a2f28aeecb86825a23f35c4ffb797f38b38f90fa36e257eaffe6b850c30f513de8e951effd8386ae9d9712309acfa2161ced8b097b9c4
7
- data.tar.gz: f25b773129e52ab6f3f8e8666b0c7b121149ec2197be78607adfca731a6f17a4c959dcd70ea385faf904d380fe5c5c35d50e4162b7814f6e91c75969727977ea
6
+ metadata.gz: fa613172a15fdc8712ad14390177d0798359f3b824b447ff350b90037be9b69e87a2a66341dece5762e942c57f48606de1e52bb5c3b47040e97b08ce425ea279
7
+ data.tar.gz: ff4353e7bc7e0d12eac43bcdadae47597250b62b76d24dd9694e94b179d2041091a40a7784fde7a64e682049c1e237241b84a20ba86f9a6afb58408f194adc09
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.2.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#34](https://github.com/hausgold/pricehubble/pull/34))
8
+
5
9
  ### 3.1.0 (4 May 2026)
6
10
 
7
11
  * 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
  # 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.2.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.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer