bundle update (#50516)

This commit is meant to accomplish two things:
- update gems with precompiled C extensions (nokogiri) so that Rails'
  lockfile can be `bundle install`d on Ruby 3.3
- remove some Gemfile conditionals for Ruby < 3 now that 3.1 is the
  minimum version

Additionally, a requirement is added to ignore mdl 0.13.0 because it
raises false positive warnings. The commit introducing those warnings
has been reverted but there has not been a release since the revert.
This commit is contained in:
Hartley McGuire 2024-01-02 10:48:44 -05:00 committed by GitHub
parent 361f296d05
commit 66c174557a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 131 additions and 130 deletions

15
Gemfile
View File

@ -3,11 +3,7 @@
source "https://rubygems.org" source "https://rubygems.org"
gemspec gemspec
if RUBY_VERSION < "3" gem "minitest", ">= 5.15.0"
gem "minitest", ">= 5.15.0", "< 5.16"
else
gem "minitest", ">= 5.15.0"
end
# We need a newish Rake since Active Job sets its test tasks' descriptions. # We need a newish Rake since Active Job sets its test tasks' descriptions.
gem "rake", ">= 13" gem "rake", ">= 13"
@ -15,12 +11,7 @@ gem "rake", ">= 13"
gem "sprockets-rails", ">= 2.0.0" gem "sprockets-rails", ">= 2.0.0"
gem "propshaft", ">= 0.1.7" gem "propshaft", ">= 0.1.7"
gem "capybara", ">= 3.39" gem "capybara", ">= 3.39"
if RUBY_VERSION < "3" gem "selenium-webdriver", ">= 4.11.0"
gem "selenium-webdriver", "<= 4.9.0"
gem "webdrivers"
else
gem "selenium-webdriver", ">= 4.11.0"
end
gem "rack-cache", "~> 1.2" gem "rack-cache", "~> 1.2"
gem "stimulus-rails" gem "stimulus-rails"
@ -62,7 +53,7 @@ group :rubocop do
end end
group :mdl do group :mdl do
gem "mdl", require: false gem "mdl", "!= 0.13.0", require: false
end end
group :doc do group :doc do

View File

@ -9,7 +9,7 @@ GIT
GIT GIT
remote: https://github.com/rails/sdoc.git remote: https://github.com/rails/sdoc.git
revision: e26cca7ccbd0a2cd9ee5a9570c20fa193c825d1a revision: 08b4252b1f5d185890562f4106d24f3afa944e40
branch: main branch: main
specs: specs:
sdoc (3.0.0.alpha) sdoc (3.0.0.alpha)
@ -120,28 +120,28 @@ PATH
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
addressable (2.8.1) addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0) public_suffix (>= 2.0.2, < 6.0)
amq-protocol (2.3.2) amq-protocol (2.3.2)
ast (2.4.2) ast (2.4.2)
aws-eventstream (1.2.0) aws-eventstream (1.3.0)
aws-partitions (1.691.0) aws-partitions (1.876.0)
aws-sdk-core (3.168.4) aws-sdk-core (3.190.1)
aws-eventstream (~> 1, >= 1.0.2) aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0) aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5) aws-sigv4 (~> 1.8)
jmespath (~> 1, >= 1.6.1) jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.61.0) aws-sdk-kms (1.75.0)
aws-sdk-core (~> 3, >= 3.165.0) aws-sdk-core (~> 3, >= 3.188.0)
aws-sigv4 (~> 1.1) aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.117.2) aws-sdk-s3 (1.142.0)
aws-sdk-core (~> 3, >= 3.165.0) aws-sdk-core (~> 3, >= 3.189.0)
aws-sdk-kms (~> 1) aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4) aws-sigv4 (~> 1.8)
aws-sdk-sns (1.57.0) aws-sdk-sns (1.70.0)
aws-sdk-core (~> 3, >= 3.165.0) aws-sdk-core (~> 3, >= 3.188.0)
aws-sigv4 (~> 1.1) aws-sigv4 (~> 1.1)
aws-sigv4 (1.5.2) aws-sigv4 (1.8.0)
aws-eventstream (~> 1, >= 1.0.2) aws-eventstream (~> 1, >= 1.0.2)
azure-storage-blob (2.0.3) azure-storage-blob (2.0.3)
azure-storage-common (~> 2.0) azure-storage-common (~> 2.0)
@ -151,22 +151,22 @@ GEM
faraday_middleware (~> 1.0, >= 1.0.0.rc1) faraday_middleware (~> 1.0, >= 1.0.0.rc1)
net-http-persistent (~> 4.0) net-http-persistent (~> 4.0)
nokogiri (~> 1, >= 1.10.8) nokogiri (~> 1, >= 1.10.8)
backburner (1.6.0) backburner (1.6.1)
beaneater (~> 1.0) beaneater (~> 1.0)
concurrent-ruby (~> 1.0, >= 1.0.1) concurrent-ruby (~> 1.0, >= 1.0.1)
dante (> 0.1.5) dante (> 0.1.5)
base64 (0.1.1) base64 (0.2.0)
bcrypt (3.1.18) bcrypt (3.1.20)
beaneater (1.1.3) beaneater (1.1.3)
benchmark-ips (2.10.0) benchmark-ips (2.13.0)
bigdecimal (3.1.4) bigdecimal (3.1.5)
bindex (0.8.1) bindex (0.8.1)
bootsnap (1.15.0) bootsnap (1.17.0)
msgpack (~> 1.2) msgpack (~> 1.2)
brakeman (6.1.1) brakeman (6.1.1)
racc racc
builder (3.2.4) builder (3.2.4)
bunny (2.20.2) bunny (2.22.0)
amq-protocol (~> 2.3, >= 2.3.1) amq-protocol (~> 2.3, >= 2.3.1)
sorted_set (~> 1, >= 1.0.2) sorted_set (~> 1, >= 1.0.2)
capybara (3.39.2) capybara (3.39.2)
@ -178,40 +178,41 @@ GEM
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0) regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2) xpath (~> 3.2)
cgi (0.3.6) cgi (0.4.1)
chef-utils (18.1.29) chef-utils (18.3.0)
concurrent-ruby concurrent-ruby
concurrent-ruby (1.2.2) concurrent-ruby (1.2.2)
connection_pool (2.4.1) connection_pool (2.4.1)
crack (0.4.5) crack (0.4.5)
rexml rexml
crass (1.0.6) crass (1.0.6)
cssbundling-rails (1.1.2) cssbundling-rails (1.3.3)
railties (>= 6.0.0) railties (>= 6.0.0)
dalli (3.2.3) dalli (3.2.6)
dante (0.2.0) dante (0.2.0)
dartsass-rails (0.4.1) dartsass-rails (0.5.0)
railties (>= 6.0.0) railties (>= 6.0.0)
date (3.3.3) sass-embedded (~> 1.63)
debug (1.7.1) date (3.3.4)
irb (>= 1.5.0) debug (1.9.1)
reline (>= 0.3.1) irb (~> 1.10)
reline (>= 0.3.8)
declarative (0.0.20) declarative (0.0.20)
delayed_job (4.1.11) delayed_job (4.1.11)
activesupport (>= 3.0, < 8.0) activesupport (>= 3.0, < 8.0)
delayed_job_active_record (4.1.7) delayed_job_active_record (4.1.8)
activerecord (>= 3.0, < 8.0) activerecord (>= 3.0, < 8.0)
delayed_job (>= 3.0, < 5) delayed_job (>= 3.0, < 5)
digest-crc (0.6.4) digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0) rake (>= 12.0.0, < 14.0.0)
drb (2.1.1) drb (2.2.0)
ruby2_keywords ruby2_keywords
erubi (1.12.0) erubi (1.12.0)
et-orbi (1.2.7) et-orbi (1.2.7)
tzinfo tzinfo
event_emitter (0.2.6) event_emitter (0.2.6)
execjs (2.8.1) execjs (2.9.1)
faraday (1.10.2) faraday (1.10.3)
faraday-em_http (~> 1.0) faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0) faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1) faraday-excon (~> 1.1)
@ -236,13 +237,13 @@ GEM
faraday-retry (1.0.3) faraday-retry (1.0.3)
faraday_middleware (1.2.0) faraday_middleware (1.2.0)
faraday (~> 1.0) faraday (~> 1.0)
ffi (1.15.5) ffi (1.16.3)
fugit (1.8.0) fugit (1.9.0)
et-orbi (~> 1, >= 1.2.7) et-orbi (~> 1, >= 1.2.7)
raabro (~> 1.4) raabro (~> 1.4)
globalid (1.2.1) globalid (1.2.1)
activesupport (>= 6.1) activesupport (>= 6.1)
google-apis-core (0.9.4) google-apis-core (0.11.2)
addressable (~> 2.5, >= 2.5.1) addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a) googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a) httpclient (>= 2.8.1, < 3.a)
@ -251,32 +252,33 @@ GEM
retriable (>= 2.0, < 4.a) retriable (>= 2.0, < 4.a)
rexml rexml
webrick webrick
google-apis-iamcredentials_v1 (0.16.0) google-apis-iamcredentials_v1 (0.17.0)
google-apis-core (>= 0.9.1, < 2.a) google-apis-core (>= 0.11.0, < 2.a)
google-apis-storage_v1 (0.19.0) google-apis-storage_v1 (0.29.0)
google-apis-core (>= 0.9.0, < 2.a) google-apis-core (>= 0.11.0, < 2.a)
google-cloud-core (1.6.0) google-cloud-core (1.6.1)
google-cloud-env (~> 1.0) google-cloud-env (>= 1.0, < 3.a)
google-cloud-errors (~> 1.0) google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0) google-cloud-env (2.1.0)
faraday (>= 0.17.3, < 3.0) faraday (>= 1.0, < 3.a)
google-cloud-errors (1.3.0) google-cloud-errors (1.3.1)
google-cloud-storage (1.44.0) google-cloud-storage (1.45.0)
addressable (~> 2.8) addressable (~> 2.8)
digest-crc (~> 0.4) digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1) google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.19.0) google-apis-storage_v1 (~> 0.29.0)
google-cloud-core (~> 1.6) google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a) googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0) mini_mime (~> 1.0)
googleauth (1.3.0) google-protobuf (3.25.1)
faraday (>= 0.17.3, < 3.a) googleauth (1.9.1)
faraday (>= 1.0, < 3.a)
google-cloud-env (~> 2.1)
jwt (>= 1.4, < 3.0) jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11) multi_json (~> 1.11)
os (>= 0.9, < 2.0) os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a) signet (>= 0.16, < 2.a)
hashdiff (1.0.1) hashdiff (1.1.0)
httpclient (2.8.3) httpclient (2.8.3)
i18n (1.14.1) i18n (1.14.1)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
@ -287,18 +289,18 @@ GEM
actionpack (>= 6.0.0) actionpack (>= 6.0.0)
activesupport (>= 6.0.0) activesupport (>= 6.0.0)
railties (>= 6.0.0) railties (>= 6.0.0)
io-console (0.6.0) io-console (0.7.1)
irb (1.10.1) irb (1.11.0)
rdoc rdoc
reline (>= 0.3.8) reline (>= 0.3.8)
jbuilder (2.11.5) jbuilder (2.11.5)
actionview (>= 5.0.0) actionview (>= 5.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
jmespath (1.6.2) jmespath (1.6.2)
jsbundling-rails (1.1.1) jsbundling-rails (1.2.1)
railties (>= 6.0.0) railties (>= 6.0.0)
json (2.6.3) json (2.7.1)
jwt (2.6.0) jwt (2.7.1)
kramdown (2.4.0) kramdown (2.4.0)
rexml rexml
kramdown-parser-gfm (1.1.0) kramdown-parser-gfm (1.1.0)
@ -308,11 +310,11 @@ GEM
activesupport (>= 6.0.0) activesupport (>= 6.0.0)
redis (>= 4.2, < 6) redis (>= 4.2, < 6)
language_server-protocol (3.17.0.3) language_server-protocol (3.17.0.3)
libxml-ruby (4.0.0) libxml-ruby (4.1.2)
listen (3.8.0) listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10) rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.21.4) loofah (2.22.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.12.0) nokogiri (>= 1.12.0)
mail (2.8.1) mail (2.8.1)
@ -328,12 +330,11 @@ GEM
mixlib-cli (~> 2.1, >= 2.1.1) mixlib-cli (~> 2.1, >= 2.1.1)
mixlib-config (>= 2.2.1, < 4) mixlib-config (>= 2.2.1, < 4)
mixlib-shellout mixlib-shellout
memoist (0.16.2)
mini_magick (4.12.0) mini_magick (4.12.0)
mini_mime (1.1.2) mini_mime (1.1.5)
mini_portile2 (2.8.5) mini_portile2 (2.8.5)
minitest (5.20.0) minitest (5.20.0)
minitest-bisect (1.6.0) minitest-bisect (1.7.0)
minitest-server (~> 1.0) minitest-server (~> 1.0)
path_expander (~> 1.1) path_expander (~> 1.1)
minitest-ci (3.4.0) minitest-ci (3.4.0)
@ -347,54 +348,54 @@ GEM
tomlrb tomlrb
mixlib-shellout (3.2.7) mixlib-shellout (3.2.7)
chef-utils chef-utils
mono_logger (1.1.1) mono_logger (1.1.2)
msgpack (1.7.0) msgpack (1.7.2)
multi_json (1.15.0) multi_json (1.15.0)
multipart-post (2.2.3) multipart-post (2.3.0)
mysql2 (0.5.5) mysql2 (0.5.5)
net-http-persistent (4.0.1) net-http-persistent (4.0.2)
connection_pool (~> 2.2) connection_pool (~> 2.2)
net-imap (0.3.7) net-imap (0.4.9)
date date
net-protocol net-protocol
net-pop (0.1.2) net-pop (0.1.2)
net-protocol net-protocol
net-protocol (0.2.1) net-protocol (0.2.2)
timeout timeout
net-smtp (0.4.0) net-smtp (0.4.0)
net-protocol net-protocol
nio4r (2.5.9) nio4r (2.7.0)
nokogiri (1.15.4) nokogiri (1.16.0)
mini_portile2 (~> 2.8.2) mini_portile2 (~> 2.8.2)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.15.4-x86_64-darwin) nokogiri (1.16.0-x86_64-darwin)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.15.4-x86_64-linux) nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4) racc (~> 1.4)
os (1.1.4) os (1.1.4)
parallel (1.23.0) parallel (1.24.0)
parser (3.2.2.4) parser (3.2.2.4)
ast (~> 2.4.1) ast (~> 2.4.1)
racc racc
path_expander (1.1.1) path_expander (1.1.1)
pg (1.5.3) pg (1.5.4)
prettier_print (1.2.1) prettier_print (1.2.1)
propshaft (0.6.4) propshaft (0.8.0)
actionpack (>= 7.0.0) actionpack (>= 7.0.0)
activesupport (>= 7.0.0) activesupport (>= 7.0.0)
rack rack
railties (>= 7.0.0) railties (>= 7.0.0)
psych (5.1.2) psych (5.1.2)
stringio stringio
public_suffix (5.0.1) public_suffix (5.0.4)
puma (6.3.0) puma (6.4.0)
nio4r (~> 2.0) nio4r (~> 2.0)
queue_classic (4.0.0) queue_classic (4.0.0)
pg (>= 1.1, < 2.0) pg (>= 1.1, < 2.0)
raabro (1.4.0) raabro (1.4.0)
racc (1.7.3) racc (1.7.3)
rack (3.0.8) rack (3.0.8)
rack-cache (1.14.0) rack-cache (1.15.0)
rack (>= 0.4) rack (>= 0.4)
rack-session (2.0.0) rack-session (2.0.0)
rack (>= 3.0.0) rack (>= 3.0.0)
@ -411,33 +412,33 @@ GEM
loofah (~> 2.21) loofah (~> 2.21)
nokogiri (~> 1.14) nokogiri (~> 1.14)
rainbow (3.1.1) rainbow (3.1.1)
rake (13.0.6) rake (13.1.0)
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
rbtree (0.4.6) rbtree (0.4.6)
rdoc (6.6.1) rdoc (6.6.2)
psych (>= 4.0.0) psych (>= 4.0.0)
redcarpet (3.2.3) redcarpet (3.2.3)
redis (5.0.5) redis (5.0.8)
redis-client (>= 0.9.0) redis-client (>= 0.17.0)
redis-client (0.12.0) redis-client (0.19.1)
connection_pool connection_pool
redis-namespace (1.10.0) redis-namespace (1.11.0)
redis (>= 4) redis (>= 4)
regexp_parser (2.8.2) regexp_parser (2.8.3)
reline (0.3.9) reline (0.4.1)
io-console (~> 0.5) io-console (~> 0.5)
representable (3.2.0) representable (3.2.0)
declarative (< 0.1.0) declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0) trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0) uber (< 0.2.0)
resque (2.4.0) resque (2.6.0)
mono_logger (~> 1.0) mono_logger (~> 1.0)
multi_json (~> 1.0) multi_json (~> 1.0)
redis-namespace (~> 1.6) redis-namespace (~> 1.6)
sinatra (>= 0.9.2) sinatra (>= 0.9.2)
resque-scheduler (4.7.0) resque-scheduler (4.10.2)
mono_logger (~> 1.0) mono_logger (~> 1.0)
redis (>= 3.3) redis (>= 3.3)
resque (>= 1.27) resque (>= 1.27)
@ -458,45 +459,54 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0) unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0) rubocop-ast (1.30.0)
parser (>= 3.2.1.0) parser (>= 3.2.1.0)
rubocop-md (1.2.0) rubocop-md (1.2.2)
rubocop (>= 1.0) rubocop (>= 1.0)
rubocop-minitest (0.29.0) rubocop-minitest (0.34.3)
rubocop (>= 1.39, < 2.0) rubocop (>= 1.39, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-packaging (0.5.2) rubocop-packaging (0.5.2)
rubocop (>= 1.33, < 2.0) rubocop (>= 1.33, < 2.0)
rubocop-performance (1.20.1) rubocop-performance (1.20.1)
rubocop (>= 1.48.1, < 2.0) rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0) rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rails (2.18.0) rubocop-rails (2.23.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0) rubocop (>= 1.33.0, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rails-omakase (1.0.0) rubocop-rails-omakase (1.0.0)
rubocop rubocop
rubocop-minitest rubocop-minitest
rubocop-performance rubocop-performance
rubocop-rails rubocop-rails
ruby-progressbar (1.13.0) ruby-progressbar (1.13.0)
ruby-vips (2.1.4) ruby-vips (2.2.0)
ffi (~> 1.12) ffi (~> 1.12)
ruby2_keywords (0.0.5) ruby2_keywords (0.0.5)
rubyzip (2.3.2) rubyzip (2.3.2)
rufus-scheduler (3.8.2) rufus-scheduler (3.9.1)
fugit (~> 1.1, >= 1.1.6) fugit (~> 1.1, >= 1.1.6)
selenium-webdriver (4.11.0) sass-embedded (1.69.6)
google-protobuf (~> 3.25)
rake (>= 13.0.0)
sass-embedded (1.69.6-x86_64-darwin)
google-protobuf (~> 3.25)
sass-embedded (1.69.6-x86_64-linux-gnu)
google-protobuf (~> 3.25)
selenium-webdriver (4.16.0)
rexml (~> 3.2, >= 3.2.5) rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0) rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0) websocket (~> 1.0)
serverengine (2.0.7) serverengine (2.0.7)
sigdump (~> 0.2.2) sigdump (~> 0.2.2)
set (1.0.3) set (1.1.0)
sidekiq (7.0.3) sidekiq (7.2.0)
concurrent-ruby (< 2) concurrent-ruby (< 2)
connection_pool (>= 2.3.0) connection_pool (>= 2.3.0)
rack (>= 2.2.4) rack (>= 2.2.4)
redis-client (>= 0.11.0) redis-client (>= 0.14.0)
sigdump (0.2.4) sigdump (0.2.5)
signet (0.17.0) signet (0.18.0)
addressable (~> 2.8) addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a) faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0) jwt (>= 1.5, < 3.0)
@ -512,39 +522,39 @@ GEM
sorted_set (1.0.3) sorted_set (1.0.3)
rbtree rbtree
set (~> 1.0) set (~> 1.0)
sprockets (4.2.0) sprockets (4.2.1)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
rack (>= 2.2.4, < 4) rack (>= 2.2.4, < 4)
sprockets-rails (3.4.2) sprockets-rails (3.4.2)
actionpack (>= 5.2) actionpack (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.6.6) sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0) mini_portile2 (~> 2.8.0)
sqlite3 (1.6.6-x86_64-darwin) sqlite3 (1.7.0-x86_64-darwin)
sqlite3 (1.6.6-x86_64-linux) sqlite3 (1.7.0-x86_64-linux)
stackprof (0.2.23) stackprof (0.2.25)
stimulus-rails (1.2.1) stimulus-rails (1.3.0)
railties (>= 6.0.0) railties (>= 6.0.0)
stringio (3.1.0) stringio (3.1.0)
sucker_punch (3.1.0) sucker_punch (3.2.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
syntax_tree (6.1.1) syntax_tree (6.1.1)
prettier_print (>= 1.2.0) prettier_print (>= 1.2.0)
tailwindcss-rails (2.0.21) tailwindcss-rails (2.1.0)
railties (>= 6.0.0) railties (>= 6.0.0)
tailwindcss-rails (2.0.21-x86_64-darwin) tailwindcss-rails (2.1.0-x86_64-darwin)
railties (>= 6.0.0) railties (>= 6.0.0)
tailwindcss-rails (2.0.21-x86_64-linux) tailwindcss-rails (2.1.0-x86_64-linux)
railties (>= 6.0.0) railties (>= 6.0.0)
terser (1.1.13) terser (1.1.20)
execjs (>= 0.3.0, < 3) execjs (>= 0.3.0, < 3)
thor (1.3.0) thor (1.3.0)
timeout (0.4.1) timeout (0.4.1)
tomlrb (2.0.3) tomlrb (2.0.3)
trailblazer-option (0.1.2) trailblazer-option (0.1.2)
trilogy (2.5.0) trilogy (2.6.0)
turbo-rails (1.3.2) turbo-rails (1.5.0)
actionpack (>= 6.0.0) actionpack (>= 6.0.0)
activejob (>= 6.0.0) activejob (>= 6.0.0)
railties (>= 6.0.0) railties (>= 6.0.0)
@ -557,17 +567,17 @@ GEM
json (>= 1.8) json (>= 1.8)
nokogiri (~> 1.6) nokogiri (~> 1.6)
rexml (~> 3.2) rexml (~> 3.2)
web-console (4.2.0) web-console (4.2.1)
actionview (>= 6.0.0) actionview (>= 6.0.0)
activemodel (>= 6.0.0) activemodel (>= 6.0.0)
bindex (>= 0.4.0) bindex (>= 0.4.0)
railties (>= 6.0.0) railties (>= 6.0.0)
webmock (3.18.1) webmock (3.19.1)
addressable (>= 2.8.0) addressable (>= 2.8.0)
crack (>= 0.3.2) crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0) hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.8.1) webrick (1.8.1)
websocket (1.2.9) websocket (1.2.10)
websocket-driver (0.7.6) websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0) websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5) websocket-extensions (0.1.5)
@ -610,7 +620,7 @@ DEPENDENCIES
kredis (>= 1.7.0) kredis (>= 1.7.0)
libxml-ruby libxml-ruby
listen (~> 3.3) listen (~> 3.3)
mdl mdl (!= 0.13.0)
minitest (>= 5.15.0) minitest (>= 5.15.0)
minitest-bisect minitest-bisect
minitest-ci minitest-ci