File tree Expand file tree Collapse file tree 6 files changed +22
-20
lines changed Expand file tree Collapse file tree 6 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 4
4
docker :
5
5
- image : cimg/ruby:3.0.7
6
6
environment :
7
- BUNDLE_GEMFILE : gemfiles/rails_6.1 .gemfile
7
+ BUNDLE_GEMFILE : gemfiles/rails_7.0 .gemfile
8
8
working_directory : ~/delayed_job_groups
9
9
steps :
10
10
- checkout
11
11
- restore_cache :
12
12
keys :
13
- - v1-gems-ruby-3.0.7-{{ checksum "delayed_job_groups.gemspec" }}-{{ checksum "gemfiles/rails_6.1 .gemfile" }}
13
+ - v1-gems-ruby-3.0.7-{{ checksum "delayed_job_groups.gemspec" }}-{{ checksum "gemfiles/rails_7.0 .gemfile
14
14
- v1-gems-ruby-3.0.7-
15
15
- run :
16
16
name : Install Gems
20
20
bundle clean
21
21
fi
22
22
- save_cache :
23
- key : v1-gems-ruby-3.0.7-{{ checksum "delayed_job_groups.gemspec" }}-{{ checksum "gemfiles/rails_6.1 .gemfile" }}
23
+ key : v1-gems-ruby-3.0.7-{{ checksum "delayed_job_groups.gemspec" }}-{{ checksum "gemfiles/rails_7.0 .gemfile
24
24
paths :
25
25
- " vendor/bundle"
26
26
- " gemfiles/vendor/bundle"
@@ -71,15 +71,15 @@ workflows:
71
71
matrix :
72
72
parameters :
73
73
gemfile :
74
- - gemfiles/rails_6.1.gemfile
75
74
- gemfiles/rails_7.0.gemfile
76
75
- gemfiles/rails_7.1.gemfile
77
76
- gemfiles/rails_7.2.gemfile
77
+ - gemfiles/rails_8.0.gemfile
78
78
ruby_version :
79
- - 3.0.7
80
- - 3.1.6
81
- - 3.2.5
79
+ - 3.1.5
80
+ - 3.2.4
82
81
- 3.3.4
83
82
exclude :
84
- - gemfile : gemfiles/rails_7.2.gemfile
85
- ruby_version : 3.0.7
83
+ - gemfile : gemfiles/rails_8.0.gemfile
84
+ ruby_version : 3.1.5
85
+
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- appraise 'rails-6.1' do
4
- gem 'activerecord' , '~> 6.1.7'
5
- gem 'activesupport' , '~> 6.1.7'
6
- gem 'sqlite3' , '~> 1.7'
7
- end
8
-
9
3
appraise 'rails-7.0' do
10
4
gem 'activerecord' , '~> 7.0.8'
11
5
gem 'activesupport' , '~> 7.0.8'
@@ -21,3 +15,8 @@ appraise 'rails-7.2' do
21
15
gem 'activerecord' , '~> 7.2.1'
22
16
gem 'activesupport' , '~> 7.2.1'
23
17
end
18
+
19
+ appraise 'rails-8.0' do
20
+ gem 'activerecord' , '~> 8.0.0'
21
+ gem 'activesupport' , '~> 8.0.0'
22
+ end
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.12.0
4
+ - Add support for Rails 8.0.
5
+ - Drop support for Rails 6.1
6
+
3
7
## 0.11.0
4
8
- Add support for Rails 7.2.
5
9
-
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
28
28
spec . required_ruby_version = '>= 3.0'
29
29
30
- spec . add_dependency 'activerecord' , '>= 6.1' , '< 8.0 '
30
+ spec . add_dependency 'activerecord' , '>= 6.1' , '< 8.1 '
31
31
spec . add_dependency 'delayed_job' , '>= 4.1'
32
32
spec . add_dependency 'delayed_job_active_record' , '>= 4.1.8'
33
33
Original file line number Diff line number Diff line change 2
2
3
3
source "https://rubygems.org"
4
4
5
- gem "activerecord", "~> 6.1.7"
6
- gem "activesupport", "~> 6.1.7"
7
- gem "sqlite3", "~> 1.7"
5
+ gem "activerecord", "~> 8.0.0"
6
+ gem "activesupport", "~> 8.0.0"
8
7
9
8
gemspec path: "../"
Original file line number Diff line number Diff line change 2
2
3
3
module Delayed
4
4
module JobGroups
5
- VERSION = '0.11 .0'
5
+ VERSION = '0.12 .0'
6
6
end
7
7
end
You can’t perform that action at this time.
0 commit comments