immoscout 2.9.0 → 2.11.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: 27323650d98dc26e67446da0a9216044ed6f88dd8d560e0d3a20794a78e7acfa
4
- data.tar.gz: 5176ec67c0f0da59b2c12c2e710510967494dfe4e6762fc4ee159bab96f110c6
3
+ metadata.gz: 2e3d3df057d9f48a5d90b93a11d3f5a714b8e6115d289e7423f9791a5e311ff3
4
+ data.tar.gz: '01018965a247408fcd392c7b1fb466bed8e96495ce39bf5ed1ca3b9f1ca73f41'
5
5
  SHA512:
6
- metadata.gz: dfbae47fe2e6fab902527722e4d9d8b72bd0f47564aa9cc78c0f11488def62353e6963651923e841c567b699de395106436b31d361f9aa45ffb9b660512a0119
7
- data.tar.gz: 547c285adc791037f792187c083e144de74605e5ffda8d2c78397a51f734c0b9e3306c7b87b0115d7c466ec1f1ebbc07e7c65cb7a1c152ee6f5057ff30539fe3
6
+ metadata.gz: 6268e2171df75f5c2a46ca89f61970428a74afd33045410aa1a957ef71caa65df1ffbd06e2092b8a9bd4ee47bd46aba7f6cc1ec0019f404416ae88e19b6396a8
7
+ data.tar.gz: 89dd75858a4c57494f0ed46d423fe9fcd1744a0cefe4295376cc24c69da906729f63d1c73676a512d4b4879f0ada55a6a963c7311df50e99928ab237c3602934
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
+ ### 2.11.0 (27 August 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#38](https://github.com/hausgold/immoscout/pull/38))
8
+
9
+ ### 2.10.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#37](https://github.com/hausgold/immoscout/pull/37))
12
+
5
13
  ### 2.9.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x and Rails <8.1 support ([#36](https://github.com/hausgold/immoscout/pull/36))
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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Immoscout
5
5
  # The version of the +immoscout+ gem
6
- VERSION = '2.9.0'
6
+ VERSION = '2.11.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: immoscout
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Geissler
@@ -201,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
201
201
  - !ruby/object:Gem::Version
202
202
  version: '0'
203
203
  requirements: []
204
- rubygems_version: 4.0.11
204
+ rubygems_version: 4.0.16
205
205
  specification_version: 4
206
206
  summary: Ruby client for the Immobilienscout24 REST API
207
207
  test_files: []