From 30d73d0ed7bfc4b5dacb682d4e9fa494df4b0b59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 21:46:00 +0000 Subject: [PATCH] Bump devise, rails, coffee-rails, sass-rails, mini_racer, paranoia, sidekiq and sinatra Bumps [devise](https://github.com/heartcombo/devise), [rails](https://github.com/rails/rails), [coffee-rails](https://github.com/rails/coffee-rails), [sass-rails](https://github.com/rails/sass-rails), [mini_racer](https://github.com/discourse/mini_racer), [paranoia](https://github.com/rubysherpas/paranoia), [sidekiq](https://github.com/sidekiq/sidekiq) and [sinatra](https://github.com/sinatra/sinatra). These dependencies needed to be updated together. Updates `devise` from 4.7.3 to 5.0.4 - [Release notes](https://github.com/heartcombo/devise/releases) - [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md) - [Commits](https://github.com/heartcombo/devise/compare/v4.7.3...v5.0.4) Updates `rails` from 4.2.11.3 to 7.1.6 - [Release notes](https://github.com/rails/rails/releases) - [Commits](https://github.com/rails/rails/compare/v4.2.11.3...v7.1.6) Updates `coffee-rails` from 4.1.1 to 5.0.0 - [Changelog](https://github.com/rails/coffee-rails/blob/master/CHANGELOG.md) - [Commits](https://github.com/rails/coffee-rails/compare/v4.1.1...v5.0.0) Updates `sass-rails` from 5.0.7 to 5.1.0 - [Release notes](https://github.com/rails/sass-rails/releases) - [Commits](https://github.com/rails/sass-rails/compare/v5.0.7...v5.1.0) Updates `mini_racer` from 0.6.4 to 0.21.0 - [Changelog](https://github.com/rubyjs/mini_racer/blob/main/CHANGELOG) - [Commits](https://github.com/discourse/mini_racer/compare/v0.6.4...v0.21.0) Updates `paranoia` from 2.4.3 to 2.6.4 - [Release notes](https://github.com/rubysherpas/paranoia/releases) - [Changelog](https://github.com/rubysherpas/paranoia/blob/core/CHANGELOG.md) - [Commits](https://github.com/rubysherpas/paranoia/compare/2.4.3...v2.6.4) Updates `sidekiq` from 5.2.8 to 7.3.9 - [Changelog](https://github.com/sidekiq/sidekiq/blob/main/Changes.md) - [Commits](https://github.com/sidekiq/sidekiq/compare/v5.2.8...v7.3.9) Updates `sinatra` from 1.4.8 to 3.2.0 - [Changelog](https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md) - [Commits](https://github.com/sinatra/sinatra/compare/v1.4.8...v3.2.0) --- updated-dependencies: - dependency-name: devise dependency-version: 5.0.4 dependency-type: direct:production - dependency-name: rails dependency-version: 7.1.6 dependency-type: direct:production - dependency-name: coffee-rails dependency-version: 5.0.0 dependency-type: direct:production - dependency-name: sass-rails dependency-version: 5.1.0 dependency-type: direct:production - dependency-name: mini_racer dependency-version: 0.21.0 dependency-type: direct:production - dependency-name: paranoia dependency-version: 2.6.4 dependency-type: direct:production - dependency-name: sidekiq dependency-version: 7.3.9 dependency-type: direct:production - dependency-name: sinatra dependency-version: 3.2.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- web/Gemfile | 126 ++++----- web/Gemfile.lock | 702 +++++++++++++++++++++++++++-------------------- 2 files changed, 468 insertions(+), 360 deletions(-) diff --git a/web/Gemfile b/web/Gemfile index 633922c..fb1ddf9 100644 --- a/web/Gemfile +++ b/web/Gemfile @@ -1,63 +1,63 @@ -source 'https://rubygems.org' - - -# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' -gem 'rails', '4.2.11.3' -gem 'sqlite3', '~> 1.3.6' -# Use SCSS for stylesheets -gem 'sass-rails', '~> 5.0' -# Use Uglifier as compressor for JavaScript assets -gem 'uglifier', '>= 1.3.0' -# Use CoffeeScript for .coffee assets and views -gem 'coffee-rails', '~> 4.1.0' -# See https://github.com/rails/execjs#readme for more supported runtimes -gem 'mini_racer' -gem 'bootstrap-sass', '~> 3.3.5' -gem 'font-awesome-sass', '~> 4.4.0' -gem 'devise' -gem 'haml', '~> 4.0.5' -gem 'devise-bootstrap-views' -gem "paranoia", "~> 2.0" -gem 'carrierwave' -gem 'mini_magick' -gem 'react-rails', '~> 1.5.0' -gem 'axlsx', '~> 2.0.1' -gem 'axlsx_rails' -gem 'wicked_pdf' -gem 'sidekiq' -gem 'sinatra', :require => nil -gem 'whenever' -gem 'redis-namespace' -gem "rolify" -gem 'bigdecimal', '1.3.5' - -# Use jquery as the JavaScript library -gem 'jquery-rails' -# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks -#gem 'turbolinks' -# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder -gem 'jbuilder', '~> 2.0' -# bundle exec rake doc:rails generates the API under doc/api. -gem 'sdoc', '~> 0.4.0', group: :doc - -# Use ActiveModel has_secure_password -# gem 'bcrypt', '~> 3.1.7' - -# Use Unicorn as the app server -# gem 'unicorn' - -# Use Capistrano for deployment -# gem 'capistrano-rails', group: :development - -group :development, :test do - # Call 'byebug' anywhere in the code to stop execution and get a debugger console - gem 'byebug' - # Access an IRB console on exception pages or by using <%= console %> in views - gem 'web-console', '~> 2.0' - gem 'rspec-rails', '~> 3.0' - gem 'timecop' - gem 'database_cleaner' - gem 'capybara' - # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring - gem 'spring' -end +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '7.1.6' +gem 'sqlite3', '~> 1.3.6' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.1' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 5.0.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +gem 'mini_racer' +gem 'bootstrap-sass', '~> 3.3.5' +gem 'font-awesome-sass', '~> 4.4.0' +gem 'devise' +gem 'haml', '~> 4.0.5' +gem 'devise-bootstrap-views' +gem "paranoia", "~> 2.6" +gem 'carrierwave' +gem 'mini_magick' +gem 'react-rails', '~> 1.5.0' +gem 'axlsx', '~> 2.0.1' +gem 'axlsx_rails' +gem 'wicked_pdf' +gem 'sidekiq' +gem 'sinatra', :require => nil +gem 'whenever' +gem 'redis-namespace' +gem "rolify" +gem 'bigdecimal', '1.3.5' + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks +#gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + gem 'rspec-rails', '~> 3.0' + gem 'timecop' + gem 'database_cleaner' + gem 'capybara' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end diff --git a/web/Gemfile.lock b/web/Gemfile.lock index a2d569d..3855a0e 100644 --- a/web/Gemfile.lock +++ b/web/Gemfile.lock @@ -1,300 +1,408 @@ -GEM - remote: https://rubygems.org/ - specs: - actionmailer (4.2.11.3) - actionpack (= 4.2.11.3) - actionview (= 4.2.11.3) - activejob (= 4.2.11.3) - mail (~> 2.5, >= 2.5.4) - rails-dom-testing (~> 1.0, >= 1.0.5) - actionpack (4.2.11.3) - actionview (= 4.2.11.3) - activesupport (= 4.2.11.3) - rack (~> 1.6) - rack-test (~> 0.6.2) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (4.2.11.3) - activesupport (= 4.2.11.3) - builder (~> 3.1) - erubis (~> 2.7.0) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.3) - activejob (4.2.11.3) - activesupport (= 4.2.11.3) - globalid (>= 0.3.0) - activemodel (4.2.11.3) - activesupport (= 4.2.11.3) - builder (~> 3.1) - activerecord (4.2.11.3) - activemodel (= 4.2.11.3) - activesupport (= 4.2.11.3) - arel (~> 6.0) - activesupport (4.2.11.3) - i18n (~> 0.7) - minitest (~> 5.1) - thread_safe (~> 0.3, >= 0.3.4) - tzinfo (~> 1.1) - addressable (2.7.0) - public_suffix (>= 2.0.2, < 5.0) - arel (6.0.4) - autoprefixer-rails (10.2.4.0) - execjs - axlsx (2.0.1) - htmlentities (~> 4.3.1) - nokogiri (>= 1.4.1) - rubyzip (~> 1.0.0) - axlsx_rails (0.5.2) - actionpack (>= 3.1) - axlsx (>= 2.0.1) - babel-source (5.8.35) - babel-transpiler (0.7.0) - babel-source (>= 4.0, < 6) - execjs (~> 2.0) - bcrypt (3.1.16) - bigdecimal (1.3.5) - binding_of_caller (1.0.0) - debug_inspector (>= 0.0.1) - bootstrap-sass (3.3.7) - autoprefixer-rails (>= 5.2.1) - sass (>= 3.3.4) - builder (3.2.4) - byebug (11.1.3) - capybara (3.35.3) - addressable - mini_mime (>= 0.1.3) - nokogiri (~> 1.8) - rack (>= 1.6.0) - rack-test (>= 0.6.3) - regexp_parser (>= 1.5, < 3.0) - xpath (~> 3.2) - carrierwave (1.3.2) - activemodel (>= 4.0.0) - activesupport (>= 4.0.0) - mime-types (>= 1.16) - ssrf_filter (~> 1.0) - chronic (0.10.2) - coffee-rails (4.1.1) - coffee-script (>= 2.2.0) - railties (>= 4.0.0, < 5.1.x) - coffee-script (2.4.1) - coffee-script-source - execjs - coffee-script-source (1.12.2) - concurrent-ruby (1.1.8) - connection_pool (2.2.3) - crass (1.0.6) - database_cleaner (1.99.0) - debug_inspector (1.0.0) - devise (4.7.3) - bcrypt (~> 3.0) - orm_adapter (~> 0.1) - railties (>= 4.1.0) - responders - warden (~> 1.2.3) - devise-bootstrap-views (1.1.0) - diff-lcs (1.4.4) - erubis (2.7.0) - execjs (2.7.0) - ffi (1.14.2) - font-awesome-sass (4.4.0) - sass (>= 3.2) - globalid (0.4.2) - activesupport (>= 4.2.0) - haml (4.0.7) - tilt - htmlentities (4.3.4) - i18n (0.9.5) - concurrent-ruby (~> 1.0) - jbuilder (2.9.1) - activesupport (>= 4.2.0) - jquery-rails (4.4.0) - rails-dom-testing (>= 1, < 3) - railties (>= 4.2.0) - thor (>= 0.14, < 2.0) - json (1.8.6) - libv8-node (16.19.0.1) - loofah (2.9.0) - crass (~> 1.0.2) - nokogiri (>= 1.5.9) - mail (2.7.1) - mini_mime (>= 0.1.1) - mime-types (3.3.1) - mime-types-data (~> 3.2015) - mime-types-data (3.2021.0212) - mini_magick (4.11.0) - mini_mime (1.0.2) - mini_portile2 (2.5.0) - mini_racer (0.6.4) - libv8-node (~> 16.19.0.0) - minitest (5.14.3) - nokogiri (1.11.1) - mini_portile2 (~> 2.5.0) - racc (~> 1.4) - orm_adapter (0.5.0) - paranoia (2.4.3) - activerecord (>= 4.0, < 6.2) - public_suffix (4.0.6) - racc (1.5.2) - rack (1.6.13) - rack-protection (1.5.5) - rack - rack-test (0.6.3) - rack (>= 1.0) - rails (4.2.11.3) - actionmailer (= 4.2.11.3) - actionpack (= 4.2.11.3) - actionview (= 4.2.11.3) - activejob (= 4.2.11.3) - activemodel (= 4.2.11.3) - activerecord (= 4.2.11.3) - activesupport (= 4.2.11.3) - bundler (>= 1.3.0, < 2.0) - railties (= 4.2.11.3) - sprockets-rails - rails-deprecated_sanitizer (1.0.4) - activesupport (>= 4.2.0.alpha) - rails-dom-testing (1.0.9) - activesupport (>= 4.2.0, < 5.0) - nokogiri (~> 1.6) - rails-deprecated_sanitizer (>= 1.0.1) - rails-html-sanitizer (1.3.0) - loofah (~> 2.3) - railties (4.2.11.3) - actionpack (= 4.2.11.3) - activesupport (= 4.2.11.3) - rake (>= 0.8.7) - thor (>= 0.18.1, < 2.0) - rake (13.0.3) - rb-fsevent (0.10.4) - rb-inotify (0.10.1) - ffi (~> 1.0) - rdoc (4.3.0) - react-rails (1.5.0) - babel-transpiler (>= 0.7.0) - coffee-script-source (~> 1.8) - connection_pool - execjs - rails (>= 3.2) - tilt - redis (4.2.5) - redis-namespace (1.8.1) - redis (>= 3.0.4) - regexp_parser (2.0.3) - responders (2.4.1) - actionpack (>= 4.2.0, < 6.0) - railties (>= 4.2.0, < 6.0) - rolify (5.3.0) - rspec-core (3.9.3) - rspec-support (~> 3.9.3) - rspec-expectations (3.9.4) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-mocks (3.9.1) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-rails (3.9.1) - actionpack (>= 3.0) - activesupport (>= 3.0) - railties (>= 3.0) - rspec-core (~> 3.9.0) - rspec-expectations (~> 3.9.0) - rspec-mocks (~> 3.9.0) - rspec-support (~> 3.9.0) - rspec-support (3.9.4) - rubyzip (1.0.0) - sass (3.7.4) - sass-listen (~> 4.0.0) - sass-listen (4.0.0) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) - sass-rails (5.0.7) - railties (>= 4.0.0, < 6) - sass (~> 3.1) - sprockets (>= 2.8, < 4.0) - sprockets-rails (>= 2.0, < 4.0) - tilt (>= 1.1, < 3) - sdoc (0.4.2) - json (~> 1.7, >= 1.7.7) - rdoc (~> 4.0) - sidekiq (5.2.8) - connection_pool (~> 2.2, >= 2.2.2) - rack (< 2.1.0) - rack-protection (>= 1.5.0) - redis (>= 3.3.5, < 5) - sinatra (1.4.8) - rack (~> 1.5) - rack-protection (~> 1.4) - tilt (>= 1.3, < 3) - spring (2.1.1) - sprockets (3.7.2) - concurrent-ruby (~> 1.0) - rack (> 1, < 3) - sprockets-rails (3.2.2) - actionpack (>= 4.0) - activesupport (>= 4.0) - sprockets (>= 3.0.0) - sqlite3 (1.3.13) - ssrf_filter (1.0.7) - thor (1.1.0) - thread_safe (0.3.6) - tilt (2.0.10) - timecop (0.9.4) - tzinfo (1.2.9) - thread_safe (~> 0.1) - uglifier (4.2.0) - execjs (>= 0.3.0, < 3) - warden (1.2.7) - rack (>= 1.0) - web-console (2.3.0) - activemodel (>= 4.0) - binding_of_caller (>= 0.7.2) - railties (>= 4.0) - sprockets-rails (>= 2.0, < 4.0) - whenever (1.0.0) - chronic (>= 0.6.3) - wicked_pdf (2.1.0) - activesupport - xpath (3.2.0) - nokogiri (~> 1.8) - -PLATFORMS - ruby - -DEPENDENCIES - axlsx (~> 2.0.1) - axlsx_rails - bigdecimal (= 1.3.5) - bootstrap-sass (~> 3.3.5) - byebug - capybara - carrierwave - coffee-rails (~> 4.1.0) - database_cleaner - devise - devise-bootstrap-views - font-awesome-sass (~> 4.4.0) - haml (~> 4.0.5) - jbuilder (~> 2.0) - jquery-rails - mini_magick - mini_racer - paranoia (~> 2.0) - rails (= 4.2.11.3) - react-rails (~> 1.5.0) - redis-namespace - rolify - rspec-rails (~> 3.0) - sass-rails (~> 5.0) - sdoc (~> 0.4.0) - sidekiq - sinatra - spring - sqlite3 (~> 1.3.6) - timecop - uglifier (>= 1.3.0) - web-console (~> 2.0) - whenever +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.1.6) + actionpack (= 7.1.6) + activesupport (= 7.1.6) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.1.6) + actionpack (= 7.1.6) + activejob (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.1.6) + actionpack (= 7.1.6) + actionview (= 7.1.6) + activejob (= 7.1.6) + activesupport (= 7.1.6) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.2) + actionpack (7.1.6) + actionview (= 7.1.6) + activesupport (= 7.1.6) + cgi + nokogiri (>= 1.8.5) + racc + rack (>= 2.2.4) + rack-session (>= 1.0.1) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + actiontext (7.1.6) + actionpack (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.1.6) + activesupport (= 7.1.6) + builder (~> 3.1) + cgi + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.1.6) + activesupport (= 7.1.6) + globalid (>= 0.3.6) + activemodel (7.1.6) + activesupport (= 7.1.6) + activerecord (7.1.6) + activemodel (= 7.1.6) + activesupport (= 7.1.6) + timeout (>= 0.4.0) + activestorage (7.1.6) + actionpack (= 7.1.6) + activejob (= 7.1.6) + activerecord (= 7.1.6) + activesupport (= 7.1.6) + marcel (~> 1.0) + activesupport (7.1.6) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + autoprefixer-rails (10.2.4.0) + execjs + axlsx (2.0.1) + htmlentities (~> 4.3.1) + nokogiri (>= 1.4.1) + rubyzip (~> 1.0.0) + axlsx_rails (0.5.2) + actionpack (>= 3.1) + axlsx (>= 2.0.1) + babel-source (5.8.35) + babel-transpiler (0.7.0) + babel-source (>= 4.0, < 6) + execjs (~> 2.0) + base64 (0.3.0) + bcrypt (3.1.22) + benchmark (0.5.0) + bigdecimal (1.3.5) + binding_of_caller (1.0.0) + debug_inspector (>= 0.0.1) + bootstrap-sass (3.3.7) + autoprefixer-rails (>= 5.2.1) + sass (>= 3.3.4) + builder (3.3.0) + byebug (11.1.3) + capybara (3.35.3) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + carrierwave (1.3.2) + activemodel (>= 4.0.0) + activesupport (>= 4.0.0) + mime-types (>= 1.16) + ssrf_filter (~> 1.0) + cgi (0.5.1) + chronic (0.10.2) + coffee-rails (5.0.0) + coffee-script (>= 2.2.0) + railties (>= 5.2.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) + crass (1.0.6) + database_cleaner (1.99.0) + date (3.5.1) + debug_inspector (1.0.0) + devise (5.0.4) + bcrypt (~> 3.0) + orm_adapter (~> 0.1) + railties (>= 7.0) + responders + warden (~> 1.2.3) + devise-bootstrap-views (1.1.0) + diff-lcs (1.4.4) + drb (2.2.3) + erubi (1.13.1) + execjs (2.10.1) + ffi (1.17.4) + font-awesome-sass (4.4.0) + sass (>= 3.2) + globalid (1.3.0) + activesupport (>= 6.1) + haml (4.0.7) + tilt + htmlentities (4.3.4) + i18n (1.14.8) + concurrent-ruby (~> 1.0) + io-console (0.8.2) + irb (1.18.0) + pp (>= 0.6.0) + prism (>= 1.3.0) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + jbuilder (2.9.1) + activesupport (>= 4.2.0) + jquery-rails (4.4.0) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.6) + libv8-node (24.12.0.1) + logger (1.7.0) + loofah (2.25.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.9.0) + logger + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.1.0) + mime-types (3.3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2021.0212) + mini_magick (4.11.0) + mini_mime (1.1.5) + mini_portile2 (2.8.9) + mini_racer (0.21.0) + libv8-node (~> 24.12.0.1) + minitest (6.0.6) + drb (~> 2.0) + prism (~> 1.5) + mustermann (3.1.1) + mutex_m (0.3.0) + net-imap (0.6.4) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.1) + net-protocol + nio4r (2.7.5) + nokogiri (1.19.3) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + orm_adapter (0.5.0) + paranoia (2.6.4) + activerecord (>= 5.1, < 7.2) + pp (0.6.3) + prettyprint + prettyprint (0.2.0) + prism (1.9.0) + public_suffix (4.0.6) + racc (1.8.1) + rack (2.2.23) + rack-protection (3.2.0) + base64 (>= 0.1.0) + rack (~> 2.2, >= 2.2.4) + rack-session (1.0.2) + rack (< 3) + rack-test (2.2.0) + rack (>= 1.3) + rackup (1.0.1) + rack (< 3) + webrick + rails (7.1.6) + actioncable (= 7.1.6) + actionmailbox (= 7.1.6) + actionmailer (= 7.1.6) + actionpack (= 7.1.6) + actiontext (= 7.1.6) + actionview (= 7.1.6) + activejob (= 7.1.6) + activemodel (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) + bundler (>= 1.15.0) + railties (= 7.1.6) + rails-dom-testing (2.3.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.1.6) + actionpack (= 7.1.6) + activesupport (= 7.1.6) + cgi + irb + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) + zeitwerk (~> 2.6) + rake (13.4.2) + rb-fsevent (0.11.2) + rb-inotify (0.11.1) + ffi (~> 1.0) + rdoc (4.3.0) + react-rails (1.5.0) + babel-transpiler (>= 0.7.0) + coffee-script-source (~> 1.8) + connection_pool + execjs + rails (>= 3.2) + tilt + redis (5.4.1) + redis-client (>= 0.22.0) + redis-client (0.29.0) + connection_pool + redis-namespace (1.8.1) + redis (>= 3.0.4) + regexp_parser (2.0.3) + reline (0.6.3) + io-console (~> 0.5) + responders (3.2.0) + actionpack (>= 7.0) + railties (>= 7.0) + rolify (5.3.0) + rspec-core (3.9.3) + rspec-support (~> 3.9.3) + rspec-expectations (3.9.4) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (3.9.1) + actionpack (>= 3.0) + activesupport (>= 3.0) + railties (>= 3.0) + rspec-core (~> 3.9.0) + rspec-expectations (~> 3.9.0) + rspec-mocks (~> 3.9.0) + rspec-support (~> 3.9.0) + rspec-support (3.9.4) + rubyzip (1.0.0) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sass-rails (5.1.0) + railties (>= 5.2.0) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.2) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + securerandom (0.4.1) + sidekiq (7.3.9) + base64 + connection_pool (>= 2.3.0) + logger + rack (>= 2.2.4) + redis-client (>= 0.22.2) + sinatra (3.2.0) + mustermann (~> 3.0) + rack (~> 2.2, >= 2.2.4) + rack-protection (= 3.2.0) + tilt (~> 2.0) + spring (2.1.1) + sprockets (3.7.5) + base64 + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.5.2) + actionpack (>= 6.1) + activesupport (>= 6.1) + sprockets (>= 3.0.0) + sqlite3 (1.3.13) + ssrf_filter (1.0.7) + thor (1.5.0) + tilt (2.7.0) + timecop (0.9.4) + timeout (0.6.1) + tsort (0.2.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + uglifier (4.2.0) + execjs (>= 0.3.0, < 3) + warden (1.2.9) + rack (>= 2.0.9) + web-console (2.3.0) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + webrick (1.9.2) + websocket-driver (0.8.0) + base64 + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + whenever (1.0.0) + chronic (>= 0.6.3) + wicked_pdf (2.1.0) + activesupport + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.7.5) + +PLATFORMS + ruby + +DEPENDENCIES + axlsx (~> 2.0.1) + axlsx_rails + bigdecimal (= 1.3.5) + bootstrap-sass (~> 3.3.5) + byebug + capybara + carrierwave + coffee-rails (~> 5.0.0) + database_cleaner + devise + devise-bootstrap-views + font-awesome-sass (~> 4.4.0) + haml (~> 4.0.5) + jbuilder (~> 2.0) + jquery-rails + mini_magick + mini_racer + paranoia (~> 2.6) + rails (= 7.1.6) + react-rails (~> 1.5.0) + redis-namespace + rolify + rspec-rails (~> 3.0) + sass-rails (~> 5.1) + sdoc (~> 0.4.0) + sidekiq + sinatra + spring + sqlite3 (~> 1.3.6) + timecop + uglifier (>= 1.3.0) + web-console (~> 2.0) + whenever wicked_pdf BUNDLED WITH