immoscout 2.7.0 → 2.9.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/.github/workflows/release.yml +3 -3
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +2 -2
- data/Appraisals +0 -4
- data/CHANGELOG.md +8 -0
- data/Dockerfile +3 -3
- data/Gemfile +1 -1
- data/Makefile +1 -1
- data/gemfiles/rails_8.1.gemfile +1 -1
- data/immoscout.gemspec +2 -2
- data/lib/immoscout/version.rb +1 -1
- metadata +5 -6
- data/gemfiles/rails_8.0.gemfile +0 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27323650d98dc26e67446da0a9216044ed6f88dd8d560e0d3a20794a78e7acfa
|
|
4
|
+
data.tar.gz: 5176ec67c0f0da59b2c12c2e710510967494dfe4e6762fc4ee159bab96f110c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfbae47fe2e6fab902527722e4d9d8b72bd0f47564aa9cc78c0f11488def62353e6963651923e841c567b699de395106436b31d361f9aa45ffb9b660512a0119
|
|
7
|
+
data.tar.gz: 547c285adc791037f792187c083e144de74605e5ffda8d2c78397a51f734c0b9e3306c7b87b0115d7c466ec1f1ebbc07e7c65cb7a1c152ee6f5057ff30539fe3
|
|
@@ -26,12 +26,12 @@ jobs:
|
|
|
26
26
|
settings: '${{ github.repository }}'
|
|
27
27
|
target: ci/gem-test
|
|
28
28
|
|
|
29
|
-
- name: Install Ruby
|
|
29
|
+
- name: Install Ruby 4.0
|
|
30
30
|
uses: ruby/setup-ruby@v1
|
|
31
31
|
with:
|
|
32
|
-
ruby-version:
|
|
32
|
+
ruby-version: 4.0
|
|
33
33
|
bundler-cache: true
|
|
34
|
-
rubygems: '
|
|
34
|
+
rubygems: '4.0.11'
|
|
35
35
|
|
|
36
36
|
- name: Switch to SSH remotes for the Git repository
|
|
37
37
|
run: git-ssh-remotes
|
data/.github/workflows/test.yml
CHANGED
|
@@ -18,8 +18,8 @@ jobs:
|
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
|
-
ruby: ['
|
|
22
|
-
rails: ['8.
|
|
21
|
+
ruby: ['4.0']
|
|
22
|
+
rails: ['8.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
38
|
bundler-cache: true
|
|
39
|
-
rubygems: '
|
|
39
|
+
rubygems: '4.0.11'
|
|
40
40
|
|
|
41
41
|
- name: Run the gem tests
|
|
42
42
|
run: make test
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
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.9.0 (4 May 2026)
|
|
6
|
+
|
|
7
|
+
* Dropped Ruby 3.x and Rails <8.1 support ([#36](https://github.com/hausgold/immoscout/pull/36))
|
|
8
|
+
|
|
9
|
+
### 2.8.0 (16 March 2026)
|
|
10
|
+
|
|
11
|
+
* Corrected some RuboCop issues ([#35](https://github.com/hausgold/immoscout/pull/35))
|
|
12
|
+
|
|
5
13
|
### 2.7.0 (19 February 2026)
|
|
6
14
|
|
|
7
15
|
* Upgraded the `faraday-oauth1` gem which supports Ruby 4 ([#34](https://github.com/hausgold/immoscout/pull/34))
|
data/Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
FROM hausgold/ruby:
|
|
1
|
+
FROM hausgold/ruby:4.0
|
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '
|
|
5
|
+
RUN gem update --system '4.0.11'
|
|
6
6
|
|
|
7
7
|
# Install system packages and the latest bundler
|
|
8
8
|
RUN apt-get update -yqqq && \
|
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
|
11
11
|
ca-certificates \
|
|
12
12
|
bash-completion inotify-tools && \
|
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
14
|
-
gem install bundler -v '~>
|
|
14
|
+
gem install bundler -v '~> 4.0.11' --no-document --no-prerelease
|
|
15
15
|
|
|
16
16
|
# Add new web user
|
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
data/Makefile
CHANGED
|
@@ -118,7 +118,7 @@ test-style: \
|
|
|
118
118
|
test-style-ruby:
|
|
119
119
|
# Run the static code analyzer (rubocop)
|
|
120
120
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
121
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '
|
|
121
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '4.0' && true))
|
|
122
122
|
|
|
123
123
|
clean:
|
|
124
124
|
# Clean the dependencies
|
data/gemfiles/rails_8.1.gemfile
CHANGED
data/immoscout.gemspec
CHANGED
|
@@ -30,9 +30,9 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ['lib']
|
|
32
32
|
|
|
33
|
-
spec.required_ruby_version = '>=
|
|
33
|
+
spec.required_ruby_version = '>= 4.0'
|
|
34
34
|
|
|
35
|
-
spec.add_dependency 'activesupport', '>= 8.
|
|
35
|
+
spec.add_dependency 'activesupport', '>= 8.1'
|
|
36
36
|
spec.add_dependency 'faraday', '~> 2.14'
|
|
37
37
|
spec.add_dependency 'faraday-follow_redirects', '>= 0.5.0'
|
|
38
38
|
spec.add_dependency 'faraday-multipart', '~> 1.2'
|
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.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcus Geissler
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '8.
|
|
18
|
+
version: '8.1'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '8.
|
|
25
|
+
version: '8.1'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: faraday
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -140,7 +140,6 @@ files:
|
|
|
140
140
|
- config/docker/.inputrc
|
|
141
141
|
- doc/assets/project.svg
|
|
142
142
|
- docker-compose.yml
|
|
143
|
-
- gemfiles/rails_8.0.gemfile
|
|
144
143
|
- gemfiles/rails_8.1.gemfile
|
|
145
144
|
- immoscout.gemspec
|
|
146
145
|
- lib/immoscout.rb
|
|
@@ -195,14 +194,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
195
194
|
requirements:
|
|
196
195
|
- - ">="
|
|
197
196
|
- !ruby/object:Gem::Version
|
|
198
|
-
version: '
|
|
197
|
+
version: '4.0'
|
|
199
198
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
199
|
requirements:
|
|
201
200
|
- - ">="
|
|
202
201
|
- !ruby/object:Gem::Version
|
|
203
202
|
version: '0'
|
|
204
203
|
requirements: []
|
|
205
|
-
rubygems_version:
|
|
204
|
+
rubygems_version: 4.0.11
|
|
206
205
|
specification_version: 4
|
|
207
206
|
summary: Ruby client for the Immobilienscout24 REST API
|
|
208
207
|
test_files: []
|
data/gemfiles/rails_8.0.gemfile
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "bundler", ">= 2.6", "< 5"
|
|
7
|
-
gem "countless", "~> 2.2"
|
|
8
|
-
gem "factory_bot", "~> 6.2"
|
|
9
|
-
gem "guard-rspec", "~> 4.7"
|
|
10
|
-
gem "railties", ">= 8.0"
|
|
11
|
-
gem "rake", "~> 13.0"
|
|
12
|
-
gem "redcarpet", "~> 3.5"
|
|
13
|
-
gem "rspec", "~> 3.12"
|
|
14
|
-
gem "rspec-json_expectations", "~> 2.2"
|
|
15
|
-
gem "rubocop"
|
|
16
|
-
gem "rubocop-rails"
|
|
17
|
-
gem "rubocop-rspec"
|
|
18
|
-
gem "simplecov", ">= 0.22"
|
|
19
|
-
gem "terminal-table", "~> 3.0"
|
|
20
|
-
gem "timecop", ">= 0.9.6"
|
|
21
|
-
gem "vcr", "~> 6.0"
|
|
22
|
-
gem "webmock", "~> 3.18"
|
|
23
|
-
gem "yard", ">= 0.9.28"
|
|
24
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
25
|
-
gem "activesupport", "~> 8.0.0"
|
|
26
|
-
|
|
27
|
-
gemspec path: "../"
|