Skip to content

Commit 4c4e43c

Browse files
committed
Actually test Rails 6.0.0, 7.0.0, 7.1.0, and released version of 8.0.0.
1 parent 8c5b58f commit 4c4e43c

6 files changed

+22
-18
lines changed

gemfiles/rails-6.0.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '~> 6.0'
5-
gem 'activemodel', '~> 6.0'
4+
gem 'actionpack', '~> 6.0.0'
5+
gem 'activemodel', '~> 6.0.0'
66

77
group :test do
8-
gem 'activejob', '~> 6.0'
8+
gem 'activejob', '~> 6.0.0'
99
end
1010

1111
gemspec path: '..'

gemfiles/rails-6.1.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '~> 6.1'
5-
gem 'activemodel', '~> 6.1'
4+
gem 'actionpack', '~> 6.1.0'
5+
gem 'activemodel', '~> 6.1.0'
66

77
group :test do
8-
gem 'activejob', '~> 6.1'
8+
gem 'activejob', '~> 6.1.0'
99
end
1010
gemspec path: '..'
1111

gemfiles/rails-7.0.gemfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '~> 7.0'
5-
gem 'activemodel', '~> 7.0'
4+
# These dependencies must be explicitly declared Ruby 3.4+
5+
gem 'bigdecimal'
6+
gem 'mutex_m'
7+
8+
gem 'actionpack', '~> 7.0.0'
9+
gem 'activemodel', '~> 7.0.0'
610

711
group :test do
8-
gem 'activejob', '~> 7.0'
12+
gem 'activejob', '~> 7.0.0'
913
end
1014
gemspec path: '..'
1115

gemfiles/rails-7.1.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '~> 7.1'
5-
gem 'activemodel', '~> 7.1'
4+
gem 'actionpack', '~> 7.1.0'
5+
gem 'activemodel', '~> 7.1.0'
66

77
group :test do
8-
gem 'activejob', '~> 7.1'
8+
gem 'activejob', '~> 7.1.0'
99
end
1010
gemspec path: '..'
1111

gemfiles/rails-7.2.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '~> 7.2'
5-
gem 'activemodel', '~> 7.2'
4+
gem 'actionpack', '~> 7.2.0'
5+
gem 'activemodel', '~> 7.2.0'
66

77
group :test do
8-
gem 'activejob', '~> 7.2'
8+
gem 'activejob', '~> 7.2.0'
99
end
1010
gemspec path: '..'
1111

gemfiles/rails-8.0.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4-
gem 'actionpack', '8.0.0.rc2'
5-
gem 'activemodel', '8.0.0.rc2'
4+
gem 'actionpack', '~> 8.0.0'
5+
gem 'activemodel', '~> 8.0.0'
66

77
group :test do
8-
gem 'activejob', '8.0.0.rc2'
8+
gem 'activejob', '~> 8.0.0
99
end
1010
gemspec path: '..'
1111

0 commit comments

Comments
 (0)