-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAppraisals
More file actions
38 lines (32 loc) · 974 Bytes
/
Appraisals
File metadata and controls
38 lines (32 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
# Multi-version testing configuration
# This file documents the Rails versions we support and test against.
#
# To test locally against a specific Rails version, use:
# RAILS_VERSION=7.0 bundle update && bundle exec rspec
# RAILS_VERSION=7.1 bundle update && bundle exec rspec
# RAILS_VERSION=7.2 bundle update && bundle exec rspec
# RAILS_VERSION=8.0 bundle update && bundle exec rspec
# RAILS_VERSION=8.1 bundle update && bundle exec rspec
#
# CI/CD testing is handled by .github/workflows/test.yml
# Rails 7.0 (Stable LTS) - Use latest patch version for Ruby 3.2+ compat
appraise "rails-7.0" do
gem "rails", "~> 7.0.8"
end
# Rails 7.1 (Stable)
appraise "rails-7.1" do
gem "rails", "~> 7.1.0"
end
# Rails 7.2 (Stable)
appraise "rails-7.2" do
gem "rails", "~> 7.2.0"
end
# Rails 8.0 (Stable)
appraise "rails-8.0" do
gem "rails", "~> 8.0.0"
end
# Rails 8.1 (Latest)
appraise "rails-8.1" do
gem "rails", "~> 8.1.0"
end