Skip to content

Commit cff5478

Browse files
Move activejob to version specific gemspecs
1 parent 96d7f3a commit cff5478

File tree

7 files changed

+19
-1
lines changed

7 files changed

+19
-1
lines changed

gemfiles/rails-6.0.gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ source 'https://rubygems.org'
44
gem 'actionpack', '~> 6.0'
55
gem 'activemodel', '~> 6.0'
66

7+
group :test do
8+
gem 'activejob', '~> 6.0'
9+
end
10+
711
gemspec path: '..'
812

913
require_relative './standard'

gemfiles/rails-6.1.gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source 'https://rubygems.org'
44
gem 'actionpack', '~> 6.1'
55
gem 'activemodel', '~> 6.1'
66

7+
group :test do
8+
gem 'activejob', '~> 6.1'
9+
end
710
gemspec path: '..'
811

912
require_relative './standard'

gemfiles/rails-7.0.gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source 'https://rubygems.org'
44
gem 'actionpack', '~> 7.0'
55
gem 'activemodel', '~> 7.0'
66

7+
group :test do
8+
gem 'activejob', '~> 7.0'
9+
end
710
gemspec path: '..'
811

912
require_relative './standard'

gemfiles/rails-7.1.gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source 'https://rubygems.org'
44
gem 'actionpack', '~> 7.1'
55
gem 'activemodel', '~> 7.1'
66

7+
group :test do
8+
gem 'activejob', '~> 7.1'
9+
end
710
gemspec path: '..'
811

912
require_relative './standard'

gemfiles/rails-7.2.gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source 'https://rubygems.org'
44
gem 'actionpack', '~> 7.2'
55
gem 'activemodel', '~> 7.2'
66

7+
group :test do
8+
gem 'activejob', '~> 7.2'
9+
end
710
gemspec path: '..'
811

912
require_relative './standard'

gemfiles/rails-8.0.gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source 'https://rubygems.org'
44
gem 'actionpack', '8.0.0.beta1'
55
gem 'activemodel', '8.0.0.beta1'
66

7+
group :test do
8+
gem 'activejob', '8.0.0.beta1'
9+
end
710
gemspec path: '..'
811

912
require_relative './standard'

gemfiles/standard.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def standard_dependencies
3636
end
3737

3838
group :test do
39-
gem 'activejob'
4039
gem 'timecop'
4140
gem 'rspec-retry'
4241
gem 'benchmark-ips'

0 commit comments

Comments
 (0)