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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 138794b974ffdab59ffa3be2065cd2f2ce3181c2f4d9b776197f5fff01368a4f
4
- data.tar.gz: 55cfee23516035bd09da4172e5ab8de5f99b9154f63230c09ca78c7283e36b05
3
+ metadata.gz: 27323650d98dc26e67446da0a9216044ed6f88dd8d560e0d3a20794a78e7acfa
4
+ data.tar.gz: 5176ec67c0f0da59b2c12c2e710510967494dfe4e6762fc4ee159bab96f110c6
5
5
  SHA512:
6
- metadata.gz: ea46de1e7c70de478b5ed3eb8eb464797f4f8eef771799b3e91059c7d1181ae6233c7061ad9e0b5315eaf6561e8eac86e37e2ed6ce60ba603051b247ee6609b4
7
- data.tar.gz: 10768c7813126a971d381544067978c45366e69ca3a4fc181f0b6cb8ce4d931a983a3592b63bf1d586a997580fa38806b4ca0b8e130c9bf758a04fa46ce3ba7c
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 3.3
29
+ - name: Install Ruby 4.0
30
30
  uses: ruby/setup-ruby@v1
31
31
  with:
32
- ruby-version: 3.3
32
+ ruby-version: 4.0
33
33
  bundler-cache: true
34
- rubygems: '3.7.2'
34
+ rubygems: '4.0.11'
35
35
 
36
36
  - name: Switch to SSH remotes for the Git repository
37
37
  run: git-ssh-remotes
@@ -18,8 +18,8 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['3.3', '3.4', '4.0']
22
- rails: ['8.0', '8.1']
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: '3.7.2'
39
+ rubygems: '4.0.11'
40
40
 
41
41
  - name: Run the gem tests
42
42
  run: make test
data/.rubocop.yml CHANGED
@@ -17,8 +17,8 @@ AllCops:
17
17
  NewCops: enable
18
18
  SuggestExtensions: false
19
19
  DisplayCopNames: true
20
- TargetRubyVersion: 3.3
21
- TargetRailsVersion: 8.0
20
+ TargetRubyVersion: 4.0
21
+ TargetRailsVersion: 8.1
22
22
  Exclude:
23
23
  - bin/**/*
24
24
  - vendor/**/*
data/Appraisals CHANGED
@@ -1,9 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails-8.0' do
4
- gem 'activesupport', '~> 8.0.0'
5
- end
6
-
7
3
  appraise 'rails-8.1' do
8
4
  gem 'activesupport', '~> 8.1.0'
9
5
  end
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:3.3
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 '3.7.2'
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 '~> 2.7.2' --no-document --no-prerelease
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
@@ -13,7 +13,7 @@ gem 'bundler', '>= 2.6', '< 5'
13
13
  gem 'countless', '~> 2.2'
14
14
  gem 'factory_bot', '~> 6.2'
15
15
  gem 'guard-rspec', '~> 4.7'
16
- gem 'railties', '>= 8.0'
16
+ gem 'railties', '>= 8.1'
17
17
  gem 'rake', '~> 13.0'
18
18
  gem 'redcarpet', '~> 3.5'
19
19
  gem 'rspec', '~> 3.12'
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)) != '3.3' && true))
121
+ || ($(TEST) $$($(RUBY_VERSION)) != '4.0' && true))
122
122
 
123
123
  clean:
124
124
  # Clean the dependencies
@@ -7,7 +7,7 @@ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "factory_bot", "~> 6.2"
9
9
  gem "guard-rspec", "~> 4.7"
10
- gem "railties", ">= 8.0"
10
+ gem "railties", ">= 8.1"
11
11
  gem "rake", "~> 13.0"
12
12
  gem "redcarpet", "~> 3.5"
13
13
  gem "rspec", "~> 3.12"
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 = '>= 3.3'
33
+ spec.required_ruby_version = '>= 4.0'
34
34
 
35
- spec.add_dependency 'activesupport', '>= 8.0'
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'
@@ -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.7.0'
6
+ VERSION = '2.9.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.7.0
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.0'
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.0'
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: '3.3'
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: 3.7.2
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: []
@@ -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: "../"