File tree Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,33 @@ jobs:
2424 fail-fast : false
2525 matrix :
2626 ruby :
27+ - ' 3.4'
2728 - ' 3.3'
2829 - ' 3.2'
2930 - ' 3.1'
3031 - ' 3.0'
3132 - ' 2.7'
3233 rails :
34+ - " 8.1.0"
35+ - " 8.0.0"
3336 - " 7.2.0"
3437 - " 7.1.0"
3538 - " 7.0.0"
3639 - " 6.1.0"
3740 - " 6.0.0"
3841 exclude :
42+ - rails : " 8.1.0"
43+ ruby : " 3.1"
44+ - rails : " 8.1.0"
45+ ruby : " 3.0"
46+ - rails : " 8.1.0"
47+ ruby : " 2.7"
48+ - rails : " 8.0.0"
49+ ruby : " 3.1"
50+ - rails : " 8.0.0"
51+ ruby : " 3.0"
52+ - rails : " 8.0.0"
53+ ruby : " 2.7"
3954 - rails : " 7.2.0"
4055 ruby : " 3.0"
4156 - rails : " 7.2.0"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ source 'https://rubygems.org'
22
33gemspec
44
5- RAILS_VERSION = ENV . fetch ( "RAILS_VERSION" , '7.0.4 ' ) . freeze
5+ RAILS_VERSION = ENV . fetch ( "RAILS_VERSION" , '8.1.0 ' ) . freeze
66
77%w( railties actionview actionpack activerecord ) . each do |name |
88 gem name , "~> #{ RAILS_VERSION } "
@@ -38,4 +38,7 @@ group :test do
3838 gem 'generator_spec'
3939 gem 'rack-test'
4040 gem 'rspec-rails' , '~> 3.1'
41+ gem 'mutex_m'
42+ gem 'base64'
43+ gem 'drb'
4144end
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
2525 spec . add_runtime_dependency 'addressable' , '~> 2.3'
2626 spec . add_runtime_dependency 'dry-core' , '~> 1.0'
27- spec . add_runtime_dependency 'railties' , '>= 6.0' , '< 8.0 .0'
27+ spec . add_runtime_dependency 'railties' , '>= 6.0' , '< 8.2 .0'
2828 spec . add_runtime_dependency 'rom' , '~> 5.3'
2929
3030 spec . add_development_dependency "bundler"
Original file line number Diff line number Diff line change 11require File . expand_path ( '../boot' , __FILE__ )
22
3+ require 'logger'
34require 'action_controller/railtie'
45
56Bundler . setup ( :default , Rails . env )
You can’t perform that action at this time.
0 commit comments