Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.3', '3.4']
ruby: ['3.3', '3.4', '4.0']
rails: ['7.2', '8.0', '8.1']
env:
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### next

* Added Ruby 4.0 support (#18)
* Dropped Ruby 3.2 and Rails 7.1 support (#17)

### 2.3.0 (19 December 2025)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ gemspec
# Development dependencies
gem 'appraisal', '~> 2.4'
gem 'benchmark-ips', '~> 2.10'
gem 'bundler', '~> 2.6'
gem 'bundler', '>= 2.6', '< 5'
gem 'guard-rspec', '~> 4.7'
gem 'irb', '~> 1.2'
gem 'rspec', '~> 3.12'
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ all:
install:
# Install the dependencies
@$(MKDIR) -p $(VENDOR_DIR)
@$(call run-shell,$(BUNDLE) check || $(BUNDLE) install --path $(VENDOR_DIR))
@$(call run-shell,$(BUNDLE) config set --local path '$(VENDOR_DIR)')
@$(call run-shell,$(BUNDLE) check || $(BUNDLE) install)
@$(call run-shell,$(BUNDLE) exec $(APPRAISAL) install)
@$(MAKE) --no-print-directory .fetch-cloc

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "appraisal", "~> 2.4"
gem "benchmark-ips", "~> 2.10"
gem "bundler", "~> 2.6"
gem "bundler", ">= 2.6", "< 5"
gem "guard-rspec", "~> 4.7"
gem "irb", "~> 1.2"
gem "rspec", "~> 3.12"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "appraisal", "~> 2.4"
gem "benchmark-ips", "~> 2.10"
gem "bundler", "~> 2.6"
gem "bundler", ">= 2.6", "< 5"
gem "guard-rspec", "~> 4.7"
gem "irb", "~> 1.2"
gem "rspec", "~> 3.12"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_8.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "appraisal", "~> 2.4"
gem "benchmark-ips", "~> 2.10"
gem "bundler", "~> 2.6"
gem "bundler", ">= 2.6", "< 5"
gem "guard-rspec", "~> 4.7"
gem "irb", "~> 1.2"
gem "rspec", "~> 3.12"
Expand Down