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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Makefile +5 -3
- data/lib/immoscout/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: 2e3d3df057d9f48a5d90b93a11d3f5a714b8e6115d289e7423f9791a5e311ff3
|
|
4
|
+
data.tar.gz: '01018965a247408fcd392c7b1fb466bed8e96495ce39bf5ed1ca3b9f1ca73f41'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
142
|
-
| $(
|
|
143
|
-
| $(
|
|
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
|
data/lib/immoscout/version.rb
CHANGED
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.
|
|
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.
|
|
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: []
|