pricehubble 2.5.0 → 2.6.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: 269bcff538812fa98636aab000dcef70730f00756d0c25f55a56c084353e2627
4
- data.tar.gz: f35a3e7156bd0104e1a21840f86117a8e7a9b2f62f57cbddd84d8ee827d9cc0d
3
+ metadata.gz: e14dc76841b3b1b50cb876bfd2be83a03d767841edcccb5aca31be9213c35007
4
+ data.tar.gz: b1db2f5be3bf077452151f8b3aecc9b81b7008cc4a890be778a17336e0f0940e
5
5
  SHA512:
6
- metadata.gz: 53eebab4379286d369f55320506fee8c7bb5e15c19dfcbc1557f0607fc9c0697a602e8b7e7d3f88950a6156afd86fda0b38b8b506c477bc655325dd50ceca027
7
- data.tar.gz: 15da3d2c8594e0e0d74721347581bae8df8b80d11a52a3f6c55fbef2a00f9f11cc9cce0c1fc3540a5af7b59e1868f5205d3a955307dced47e1387f0261f5abee
6
+ metadata.gz: ccf1eebbd235ddb1167dc4a75db19d24d4eb1f51567ec0434ca87bdbd54363f04026a89d06412ede393b9785e714de3a2d978acb29248925aefddfeec8ac6fae
7
+ data.tar.gz: 67e6bd8847bbaec5bc3ec5a59bdc2af31e67dcc31f8ecbf6befea3ff155888e6baa5a47b1ae730d02eb0adaf938be96ff4548519673b59c18047c7d00955b1d1
@@ -31,7 +31,7 @@ jobs:
31
31
  with:
32
32
  ruby-version: 3.3
33
33
  bundler-cache: true
34
- rubygems: '3.6.9'
34
+ rubygems: '3.7.2'
35
35
 
36
36
  - name: Switch to SSH remotes for the Git repository
37
37
  run: git-ssh-remotes
@@ -19,7 +19,7 @@ jobs:
19
19
  fail-fast: false
20
20
  matrix:
21
21
  ruby: ['3.3', '3.4', '4.0']
22
- rails: ['7.2', '8.0', '8.1']
22
+ rails: ['8.0', '8.1']
23
23
  continue-on-error: ${{ matrix.ruby == '4.0' }}
24
24
  env:
25
25
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
@@ -37,7 +37,7 @@ jobs:
37
37
  with:
38
38
  ruby-version: ${{ matrix.ruby }}
39
39
  bundler-cache: true
40
- rubygems: '3.6.9'
40
+ rubygems: '3.7.2'
41
41
 
42
42
  - name: Run the gem tests
43
43
  run: make test
data/.rubocop.yml CHANGED
@@ -18,7 +18,7 @@ AllCops:
18
18
  SuggestExtensions: false
19
19
  DisplayCopNames: true
20
20
  TargetRubyVersion: 3.3
21
- TargetRailsVersion: 7.2
21
+ TargetRailsVersion: 8.0
22
22
  Exclude:
23
23
  - bin/**/*
24
24
  - vendor/**/*
data/Appraisals CHANGED
@@ -1,10 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails-7.2' do
4
- gem 'activemodel', '~> 7.2.0'
5
- gem 'activesupport', '~> 7.2.0'
6
- end
7
-
8
3
  appraise 'rails-8.0' do
9
4
  gem 'activemodel', '~> 8.0.0'
10
5
  gem 'activesupport', '~> 8.0.0'
data/CHANGELOG.md CHANGED
@@ -2,9 +2,13 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 2.6.0 (28 January 2026)
6
+
7
+ * Dropped Rails 7.1 support ([#27](https://github.com/hausgold/pricehubble/pull/27))
8
+
5
9
  ### 2.5.0 (19 January 2026)
6
10
 
7
- * TODO: Replace this bullet point with an actual description of a change.
11
+ * Corrected some Rubocop glitches
8
12
 
9
13
  ### 2.4.0 (5 January 2026)
10
14
 
data/Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM hausgold/ruby:3.3
2
2
  LABEL org.opencontainers.image.authors="containers@hausgold.de"
3
3
 
4
4
  # Update system gem
5
- RUN gem update --system '3.6.9'
5
+ RUN gem update --system '3.7.2'
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.6.9' --no-document --no-prerelease
14
+ gem install bundler -v '~> 2.7.2' --no-document --no-prerelease
15
15
 
16
16
  # Add new web user
17
17
  RUN mkdir /app && \
@@ -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 = '2.5.0'
6
+ VERSION = '2.6.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/pricehubble.gemspec CHANGED
@@ -33,8 +33,8 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.required_ruby_version = '>= 3.3'
35
35
 
36
- spec.add_dependency 'activemodel', '>= 7.2'
37
- spec.add_dependency 'activesupport', '>= 7.2'
36
+ spec.add_dependency 'activemodel', '>= 8.0'
37
+ spec.add_dependency 'activesupport', '>= 8.0'
38
38
  spec.add_dependency 'faraday', '~> 2.14'
39
39
  spec.add_dependency 'faraday-follow_redirects', '>= 0.5.0'
40
40
  spec.add_dependency 'faraday-multipart', '~> 1.2'
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: 2.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -15,28 +15,28 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '7.2'
18
+ version: '8.0'
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: '7.2'
25
+ version: '8.0'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activesupport
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: '7.2'
32
+ version: '8.0'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '7.2'
39
+ version: '8.0'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: faraday
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -175,7 +175,6 @@ files:
175
175
  - doc/examples/property_valuations_errors.rb
176
176
  - doc/examples/simple_property_valuations.rb
177
177
  - docker-compose.yml
178
- - gemfiles/rails_7.2.gemfile
179
178
  - gemfiles/rails_8.0.gemfile
180
179
  - gemfiles/rails_8.1.gemfile
181
180
  - lib/price_hubble.rb
@@ -249,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
248
  - !ruby/object:Gem::Version
250
249
  version: '0'
251
250
  requirements: []
252
- rubygems_version: 3.6.9
251
+ rubygems_version: 3.7.2
253
252
  specification_version: 4
254
253
  summary: Ruby client for the PriceHubble REST API
255
254
  test_files: []
@@ -1,26 +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", "< 6.4.5"
9
- gem "guard-rspec", "~> 4.7"
10
- gem "rake", "~> 13.0"
11
- gem "redcarpet", "~> 3.5"
12
- gem "rspec", "~> 3.12"
13
- gem "rubocop"
14
- gem "rubocop-rails"
15
- gem "rubocop-rspec"
16
- gem "simplecov", ">= 0.22"
17
- gem "terminal-table", "~> 3.0"
18
- gem "timecop", ">= 0.9.6"
19
- gem "vcr", "~> 6.0"
20
- gem "webmock", "~> 3.18"
21
- gem "yard", ">= 0.9.28"
22
- gem "yard-activesupport-concern", ">= 0.0.1"
23
- gem "activemodel", "~> 7.2.0"
24
- gem "activesupport", "~> 7.2.0"
25
-
26
- gemspec path: "../"