upgrade to rails 7
This commit is contained in:
@@ -1 +1 @@
|
|||||||
3.0.2
|
3.2.1
|
||||||
|
|||||||
40
Gemfile
40
Gemfile
@@ -3,13 +3,13 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
ruby '3.0.2'
|
ruby '3.2.1'
|
||||||
|
|
||||||
# Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity.
|
# Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity.
|
||||||
# It encourages beautiful code by favoring convention over configuration.
|
# It encourages beautiful code by favoring convention over configuration.
|
||||||
gem 'rails', '~> 6.1.4'
|
gem 'rails', '~> 7.0.8'
|
||||||
# A set of common locale data and translations to internationalize and/or localize your Rails applications
|
# A set of common locale data and translations to internationalize and/or localize your Rails applications
|
||||||
gem 'rails-i18n', '~> 6.0.0'
|
gem 'rails-i18n'
|
||||||
# Use postgresql as the database for Active Record
|
# Use postgresql as the database for Active Record
|
||||||
gem 'pg', '~> 1.1'
|
gem 'pg', '~> 1.1'
|
||||||
# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications
|
# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications
|
||||||
@@ -19,19 +19,19 @@ gem 'sass-rails', '>= 6'
|
|||||||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
||||||
gem 'webpacker', '~> 5.0'
|
gem 'webpacker', '~> 5.0'
|
||||||
# The speed of a single-page web application without having to write any JavaScript.
|
# The speed of a single-page web application without having to write any JavaScript.
|
||||||
gem 'turbo-rails', '~> 0.6.0'
|
gem 'turbo-rails'
|
||||||
# Use Redis adapter to run Action Cable in production
|
# Use Redis adapter to run Action Cable in production
|
||||||
gem 'redis', '~> 4.2.5'
|
gem 'redis'
|
||||||
# Autoload dotenv in Rails
|
# Autoload dotenv in Rails
|
||||||
gem 'dotenv-rails', '~> 2.7.6'
|
gem 'dotenv-rails'
|
||||||
# Use Active Model has_secure_password
|
# Use Active Model has_secure_password
|
||||||
gem 'bcrypt', '~> 3.1.16'
|
gem 'bcrypt'
|
||||||
# Flexible authentication solution for Rails with Warden
|
# Flexible authentication solution for Rails with Warden
|
||||||
gem 'devise', '~> 4.8.0'
|
gem 'devise'
|
||||||
# Tame Rails' multi-line logging into a single line per request
|
# Tame Rails' multi-line logging into a single line per request
|
||||||
gem 'lograge', '~> 0.11.2'
|
gem 'lograge'
|
||||||
# Stores and retrieves localized data through attributes on a Ruby class, with flexible support for different storage strategies
|
# Stores and retrieves localized data through attributes on a Ruby class, with flexible support for different storage strategies
|
||||||
gem 'mobility', '~> 1.1.3'
|
gem 'mobility'
|
||||||
# A generalized Rack framework for multiple-provider authentication.
|
# A generalized Rack framework for multiple-provider authentication.
|
||||||
gem 'omniauth', '~> 2.0.4'
|
gem 'omniauth', '~> 2.0.4'
|
||||||
# Omniauth Strategy for Battle.net OAuth Login. For more info visit https://dev.battle.net
|
# Omniauth Strategy for Battle.net OAuth Login. For more info visit https://dev.battle.net
|
||||||
@@ -41,15 +41,15 @@ gem 'omniauth-rails_csrf_protection', '~> 1.0.0'
|
|||||||
# A Ruby wrapper around Blizzard's Game Data and Profile APIs
|
# A Ruby wrapper around Blizzard's Game Data and Profile APIs
|
||||||
gem 'rbattlenet', '~> 2.2.9', git: 'https://github.com/Dainii/rbattlenet'
|
gem 'rbattlenet', '~> 2.2.9', git: 'https://github.com/Dainii/rbattlenet'
|
||||||
# A gem that provides Rails integration for the Sentry error logger
|
# A gem that provides Rails integration for the Sentry error logger
|
||||||
gem 'sentry-rails', '~> 4.6.5'
|
gem 'sentry-rails', '~> 5.5.0'
|
||||||
gem 'sentry-ruby', '~> 4.6.5'
|
gem 'sentry-ruby', '~> 5.5.0'
|
||||||
gem 'sentry-sidekiq', '~> 4.6.5'
|
gem 'sentry-sidekiq', '~> 5.5.0'
|
||||||
# Simple, efficient background processing for Ruby
|
# Simple, efficient background processing for Ruby
|
||||||
gem 'sidekiq', '~> 6.2.1'
|
gem 'sidekiq', '~> 7.1'
|
||||||
# Agnostic pagination in plain ruby
|
# Agnostic pagination in plain ruby
|
||||||
gem 'pagy', '~> 4.3.0'
|
gem 'pagy'
|
||||||
# Reduces boot times through caching; required in config/boot.rb
|
# Reduces boot times through caching; required in config/boot.rb
|
||||||
gem 'bootsnap', '>= 1.4.4', require: false
|
gem 'bootsnap', require: false
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
# Brakeman detects security vulnerabilities in Ruby on Rails applications via static analysis
|
# Brakeman detects security vulnerabilities in Ruby on Rails applications via static analysis
|
||||||
@@ -71,10 +71,10 @@ end
|
|||||||
group :development do
|
group :development do
|
||||||
gem 'awesome_print'
|
gem 'awesome_print'
|
||||||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
||||||
gem 'web-console', '>= 4.1.0'
|
gem 'web-console'
|
||||||
# Display performance information such as SQL time and flame graphs for each request in your browser.
|
# Display performance information such as SQL time and flame graphs for each request in your browser.
|
||||||
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
|
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
|
||||||
gem 'rack-mini-profiler', '~> 2.3.2'
|
gem 'rack-mini-profiler'
|
||||||
# The Listen gem listens to file modifications and notifies you about the changes. Works everywhere
|
# The Listen gem listens to file modifications and notifies you about the changes. Works everywhere
|
||||||
gem 'listen', '~> 3.3'
|
gem 'listen', '~> 3.3'
|
||||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||||
@@ -82,14 +82,14 @@ group :development do
|
|||||||
# IDE tools for code completion, inline documentation, and static analysis
|
# IDE tools for code completion, inline documentation, and static analysis
|
||||||
gem 'solargraph'
|
gem 'solargraph'
|
||||||
# Use Pry as your rails console
|
# Use Pry as your rails console
|
||||||
gem 'pry-rails', '~> 0.3.9'
|
gem 'pry-rails'
|
||||||
# Automatically generate an entity-relationship diagram (ERD) for your Rails models.
|
# Automatically generate an entity-relationship diagram (ERD) for your Rails models.
|
||||||
gem 'rails-erd'
|
gem 'rails-erd'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
# Adds support for Capybara system testing and selenium driver
|
# Adds support for Capybara system testing and selenium driver
|
||||||
gem 'capybara', '>= 3.26'
|
gem 'capybara'
|
||||||
# WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user
|
# WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user
|
||||||
# and as such interacts with the HTML of the application
|
# and as such interacts with the HTML of the application
|
||||||
gem 'selenium-webdriver'
|
gem 'selenium-webdriver'
|
||||||
|
|||||||
520
Gemfile.lock
520
Gemfile.lock
@@ -8,309 +8,325 @@ GIT
|
|||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/Dainii/rbattlenet
|
remote: https://github.com/Dainii/rbattlenet
|
||||||
revision: a0492dd16f9b29b61e364009272d60e9201e1337
|
revision: 499b2a6308a050acff90be7b2e77ae04f01daa67
|
||||||
specs:
|
specs:
|
||||||
rbattlenet (2.2.9)
|
rbattlenet (2.2.21)
|
||||||
require_all
|
|
||||||
typhoeus (~> 1.1)
|
typhoeus (~> 1.1)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (6.1.4)
|
actioncable (7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
actionmailbox (6.1.4)
|
actionmailbox (7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
activejob (= 6.1.4)
|
activejob (= 7.0.8)
|
||||||
activerecord (= 6.1.4)
|
activerecord (= 7.0.8)
|
||||||
activestorage (= 6.1.4)
|
activestorage (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
actionmailer (6.1.4)
|
net-imap
|
||||||
actionpack (= 6.1.4)
|
net-pop
|
||||||
actionview (= 6.1.4)
|
net-smtp
|
||||||
activejob (= 6.1.4)
|
actionmailer (7.0.8)
|
||||||
activesupport (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
|
actionview (= 7.0.8)
|
||||||
|
activejob (= 7.0.8)
|
||||||
|
activesupport (= 7.0.8)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (6.1.4)
|
actionpack (7.0.8)
|
||||||
actionview (= 6.1.4)
|
actionview (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
rack (~> 2.0, >= 2.0.9)
|
rack (~> 2.0, >= 2.2.4)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (6.1.4)
|
actiontext (7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
activerecord (= 6.1.4)
|
activerecord (= 7.0.8)
|
||||||
activestorage (= 6.1.4)
|
activestorage (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (6.1.4)
|
actionview (7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
activejob (6.1.4)
|
activejob (7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (6.1.4)
|
activemodel (7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
activerecord (6.1.4)
|
activerecord (7.0.8)
|
||||||
activemodel (= 6.1.4)
|
activemodel (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
activestorage (6.1.4)
|
activestorage (7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
activejob (= 6.1.4)
|
activejob (= 7.0.8)
|
||||||
activerecord (= 6.1.4)
|
activerecord (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
marcel (~> 1.0.0)
|
marcel (~> 1.0)
|
||||||
mini_mime (>= 1.1.0)
|
mini_mime (>= 1.1.0)
|
||||||
activesupport (6.1.4)
|
activesupport (7.0.8)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
zeitwerk (~> 2.3)
|
addressable (2.8.5)
|
||||||
addressable (2.8.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
ast (2.4.2)
|
ast (2.4.2)
|
||||||
awesome_print (1.9.2)
|
awesome_print (1.9.2)
|
||||||
backport (1.2.0)
|
backport (1.2.0)
|
||||||
bcrypt (3.1.16)
|
base64 (0.1.1)
|
||||||
benchmark (0.1.1)
|
bcrypt (3.1.19)
|
||||||
|
benchmark (0.2.1)
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
bootsnap (1.7.7)
|
bootsnap (1.16.0)
|
||||||
msgpack (~> 1.0)
|
msgpack (~> 1.2)
|
||||||
brakeman (5.0.4)
|
brakeman (5.0.4)
|
||||||
builder (3.2.4)
|
builder (3.2.4)
|
||||||
byebug (11.1.3)
|
byebug (11.1.3)
|
||||||
capybara (3.35.3)
|
capybara (3.39.2)
|
||||||
addressable
|
addressable
|
||||||
|
matrix
|
||||||
mini_mime (>= 0.1.3)
|
mini_mime (>= 0.1.3)
|
||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
rack (>= 1.6.0)
|
rack (>= 1.6.0)
|
||||||
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)
|
||||||
childprocess (3.0.0)
|
|
||||||
choice (0.2.0)
|
choice (0.2.0)
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
concurrent-ruby (1.1.9)
|
concurrent-ruby (1.2.2)
|
||||||
connection_pool (2.2.5)
|
connection_pool (2.4.1)
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
database_cleaner (2.0.1)
|
database_cleaner (2.0.2)
|
||||||
database_cleaner-active_record (~> 2.0.0)
|
database_cleaner-active_record (>= 2, < 3)
|
||||||
database_cleaner-active_record (2.0.1)
|
database_cleaner-active_record (2.1.0)
|
||||||
activerecord (>= 5.a)
|
activerecord (>= 5.a)
|
||||||
database_cleaner-core (~> 2.0.0)
|
database_cleaner-core (~> 2.0.0)
|
||||||
database_cleaner-core (2.0.1)
|
database_cleaner-core (2.0.1)
|
||||||
devise (4.8.0)
|
date (3.3.3)
|
||||||
|
devise (4.9.2)
|
||||||
bcrypt (~> 3.0)
|
bcrypt (~> 3.0)
|
||||||
orm_adapter (~> 0.1)
|
orm_adapter (~> 0.1)
|
||||||
railties (>= 4.1.0)
|
railties (>= 4.1.0)
|
||||||
responders
|
responders
|
||||||
warden (~> 1.2.3)
|
warden (~> 1.2.3)
|
||||||
diff-lcs (1.4.4)
|
diff-lcs (1.5.0)
|
||||||
docile (1.4.0)
|
docile (1.4.0)
|
||||||
dotenv (2.7.6)
|
dotenv (2.8.1)
|
||||||
dotenv-rails (2.7.6)
|
dotenv-rails (2.8.1)
|
||||||
dotenv (= 2.7.6)
|
dotenv (= 2.8.1)
|
||||||
railties (>= 3.2)
|
railties (>= 3.2)
|
||||||
e2mmap (0.1.0)
|
e2mmap (0.1.0)
|
||||||
erubi (1.10.0)
|
erubi (1.12.0)
|
||||||
ethon (0.14.0)
|
ethon (0.16.0)
|
||||||
ffi (>= 1.15.0)
|
ffi (>= 1.15.0)
|
||||||
faraday (1.7.0)
|
faraday (2.7.11)
|
||||||
faraday-em_http (~> 1.0)
|
base64
|
||||||
faraday-em_synchrony (~> 1.0)
|
faraday-net_http (>= 2.0, < 3.1)
|
||||||
faraday-excon (~> 1.1)
|
|
||||||
faraday-httpclient (~> 1.0.1)
|
|
||||||
faraday-net_http (~> 1.0)
|
|
||||||
faraday-net_http_persistent (~> 1.1)
|
|
||||||
faraday-patron (~> 1.0)
|
|
||||||
faraday-rack (~> 1.0)
|
|
||||||
multipart-post (>= 1.2, < 3)
|
|
||||||
ruby2_keywords (>= 0.0.4)
|
ruby2_keywords (>= 0.0.4)
|
||||||
faraday-em_http (1.0.0)
|
faraday-net_http (3.0.2)
|
||||||
faraday-em_synchrony (1.0.0)
|
ffi (1.15.5)
|
||||||
faraday-excon (1.1.0)
|
globalid (1.2.1)
|
||||||
faraday-httpclient (1.0.1)
|
activesupport (>= 6.1)
|
||||||
faraday-net_http (1.0.1)
|
hashie (5.0.0)
|
||||||
faraday-net_http_persistent (1.2.0)
|
i18n (1.14.1)
|
||||||
faraday-patron (1.0.0)
|
|
||||||
faraday-rack (1.0.0)
|
|
||||||
ffi (1.15.3)
|
|
||||||
globalid (0.5.2)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
hashie (4.1.0)
|
|
||||||
i18n (1.8.10)
|
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
jaro_winkler (1.5.4)
|
jaro_winkler (1.5.6)
|
||||||
jwt (2.2.3)
|
json (2.6.3)
|
||||||
kramdown (2.3.1)
|
jwt (2.7.1)
|
||||||
|
kramdown (2.4.0)
|
||||||
rexml
|
rexml
|
||||||
kramdown-parser-gfm (1.1.0)
|
kramdown-parser-gfm (1.1.0)
|
||||||
kramdown (~> 2.0)
|
kramdown (~> 2.0)
|
||||||
listen (3.6.0)
|
language_server-protocol (3.17.0.3)
|
||||||
|
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)
|
||||||
lograge (0.11.2)
|
lograge (0.13.0)
|
||||||
actionpack (>= 4)
|
actionpack (>= 4)
|
||||||
activesupport (>= 4)
|
activesupport (>= 4)
|
||||||
railties (>= 4)
|
railties (>= 4)
|
||||||
request_store (~> 1.0)
|
request_store (~> 1.0)
|
||||||
loofah (2.12.0)
|
loofah (2.21.3)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.5.9)
|
nokogiri (>= 1.12.0)
|
||||||
mail (2.7.1)
|
mail (2.8.1)
|
||||||
mini_mime (>= 0.1.1)
|
mini_mime (>= 0.1.1)
|
||||||
marcel (1.0.1)
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
method_source (1.0.0)
|
method_source (1.0.0)
|
||||||
mini_mime (1.1.0)
|
mini_mime (1.1.5)
|
||||||
minitest (5.14.4)
|
minitest (5.20.0)
|
||||||
mobility (1.1.3)
|
mobility (1.2.9)
|
||||||
i18n (>= 0.6.10, < 2)
|
i18n (>= 0.6.10, < 2)
|
||||||
request_store (~> 1.0)
|
request_store (~> 1.0)
|
||||||
msgpack (1.4.2)
|
msgpack (1.7.2)
|
||||||
multi_json (1.15.0)
|
|
||||||
multi_xml (0.6.0)
|
multi_xml (0.6.0)
|
||||||
multipart-post (2.1.1)
|
net-imap (0.3.7)
|
||||||
nio4r (2.5.8)
|
date
|
||||||
nokogiri (1.12.3-x86_64-linux)
|
net-protocol
|
||||||
|
net-pop (0.1.2)
|
||||||
|
net-protocol
|
||||||
|
net-protocol (0.2.1)
|
||||||
|
timeout
|
||||||
|
net-smtp (0.3.3)
|
||||||
|
net-protocol
|
||||||
|
nio4r (2.5.9)
|
||||||
|
nokogiri (1.15.4-x86_64-linux)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
oauth2 (1.4.7)
|
oauth2 (2.0.9)
|
||||||
faraday (>= 0.8, < 2.0)
|
faraday (>= 0.17.3, < 3.0)
|
||||||
jwt (>= 1.0, < 3.0)
|
jwt (>= 1.0, < 3.0)
|
||||||
multi_json (~> 1.3)
|
|
||||||
multi_xml (~> 0.5)
|
multi_xml (~> 0.5)
|
||||||
rack (>= 1.2, < 3)
|
rack (>= 1.2, < 4)
|
||||||
|
snaky_hash (~> 2.0)
|
||||||
|
version_gem (~> 1.1)
|
||||||
omniauth (2.0.4)
|
omniauth (2.0.4)
|
||||||
hashie (>= 3.4.6)
|
hashie (>= 3.4.6)
|
||||||
rack (>= 1.6.2, < 3)
|
rack (>= 1.6.2, < 3)
|
||||||
rack-protection
|
rack-protection
|
||||||
omniauth-oauth2 (1.7.1)
|
omniauth-oauth2 (1.7.3)
|
||||||
oauth2 (~> 1.4)
|
oauth2 (>= 1.4, < 3)
|
||||||
omniauth (>= 1.9, < 3)
|
omniauth (>= 1.9, < 3)
|
||||||
omniauth-rails_csrf_protection (1.0.0)
|
omniauth-rails_csrf_protection (1.0.1)
|
||||||
actionpack (>= 4.2)
|
actionpack (>= 4.2)
|
||||||
omniauth (~> 2.0)
|
omniauth (~> 2.0)
|
||||||
orm_adapter (0.5.0)
|
orm_adapter (0.5.0)
|
||||||
pagy (4.3.0)
|
pagy (6.0.4)
|
||||||
parallel (1.20.1)
|
parallel (1.23.0)
|
||||||
parser (3.0.2.0)
|
parser (3.2.2.3)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
pg (1.2.3)
|
racc
|
||||||
pry (0.14.1)
|
pg (1.5.4)
|
||||||
|
pry (0.14.2)
|
||||||
coderay (~> 1.1)
|
coderay (~> 1.1)
|
||||||
method_source (~> 1.0)
|
method_source (~> 1.0)
|
||||||
pry-rails (0.3.9)
|
pry-rails (0.3.9)
|
||||||
pry (>= 0.10.4)
|
pry (>= 0.10.4)
|
||||||
public_suffix (4.0.6)
|
public_suffix (5.0.3)
|
||||||
puma (5.4.0)
|
puma (5.4.0)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
racc (1.5.2)
|
racc (1.7.1)
|
||||||
rack (2.2.3)
|
rack (2.2.8)
|
||||||
rack-mini-profiler (2.3.2)
|
rack-mini-profiler (3.1.1)
|
||||||
rack (>= 1.2.0)
|
rack (>= 1.2.0)
|
||||||
rack-protection (2.1.0)
|
rack-protection (3.1.0)
|
||||||
|
rack (~> 2.2, >= 2.2.4)
|
||||||
|
rack-proxy (0.7.7)
|
||||||
rack
|
rack
|
||||||
rack-proxy (0.7.0)
|
rack-test (2.1.0)
|
||||||
rack
|
rack (>= 1.3)
|
||||||
rack-test (1.1.0)
|
rails (7.0.8)
|
||||||
rack (>= 1.0, < 3)
|
actioncable (= 7.0.8)
|
||||||
rails (6.1.4)
|
actionmailbox (= 7.0.8)
|
||||||
actioncable (= 6.1.4)
|
actionmailer (= 7.0.8)
|
||||||
actionmailbox (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
actionmailer (= 6.1.4)
|
actiontext (= 7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionview (= 7.0.8)
|
||||||
actiontext (= 6.1.4)
|
activejob (= 7.0.8)
|
||||||
actionview (= 6.1.4)
|
activemodel (= 7.0.8)
|
||||||
activejob (= 6.1.4)
|
activerecord (= 7.0.8)
|
||||||
activemodel (= 6.1.4)
|
activestorage (= 7.0.8)
|
||||||
activerecord (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
activestorage (= 6.1.4)
|
|
||||||
activesupport (= 6.1.4)
|
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 6.1.4)
|
railties (= 7.0.8)
|
||||||
sprockets-rails (>= 2.0.0)
|
rails-dom-testing (2.2.0)
|
||||||
rails-dom-testing (2.0.3)
|
activesupport (>= 5.0.0)
|
||||||
activesupport (>= 4.2.0)
|
minitest
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-erd (1.6.1)
|
rails-erd (1.7.2)
|
||||||
activerecord (>= 4.2)
|
activerecord (>= 4.2)
|
||||||
activesupport (>= 4.2)
|
activesupport (>= 4.2)
|
||||||
choice (~> 0.2.0)
|
choice (~> 0.2.0)
|
||||||
ruby-graphviz (~> 1.2)
|
ruby-graphviz (~> 1.2)
|
||||||
rails-html-sanitizer (1.3.0)
|
rails-html-sanitizer (1.6.0)
|
||||||
loofah (~> 2.3)
|
loofah (~> 2.21)
|
||||||
rails-i18n (6.0.0)
|
nokogiri (~> 1.14)
|
||||||
|
rails-i18n (7.0.8)
|
||||||
i18n (>= 0.7, < 2)
|
i18n (>= 0.7, < 2)
|
||||||
railties (>= 6.0.0, < 7)
|
railties (>= 6.0.0, < 8)
|
||||||
railties (6.1.4)
|
railties (7.0.8)
|
||||||
actionpack (= 6.1.4)
|
actionpack (= 7.0.8)
|
||||||
activesupport (= 6.1.4)
|
activesupport (= 7.0.8)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 0.13)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
rainbow (3.0.0)
|
zeitwerk (~> 2.5)
|
||||||
|
rainbow (3.1.1)
|
||||||
rake (13.0.6)
|
rake (13.0.6)
|
||||||
rb-fsevent (0.11.0)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.10.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
redis (4.2.5)
|
rbs (2.8.4)
|
||||||
regexp_parser (2.1.1)
|
redis (5.0.7)
|
||||||
request_store (1.5.0)
|
redis-client (>= 0.9.0)
|
||||||
|
redis-client (0.17.0)
|
||||||
|
connection_pool
|
||||||
|
regexp_parser (2.8.1)
|
||||||
|
request_store (1.5.1)
|
||||||
rack (>= 1.4)
|
rack (>= 1.4)
|
||||||
require_all (3.0.0)
|
responders (3.1.0)
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
reverse_markdown (2.0.0)
|
|
||||||
nokogiri
|
|
||||||
rexml (3.2.5)
|
|
||||||
rspec-core (3.10.1)
|
|
||||||
rspec-support (~> 3.10.0)
|
|
||||||
rspec-expectations (3.10.1)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.10.0)
|
|
||||||
rspec-mocks (3.10.2)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.10.0)
|
|
||||||
rspec-rails (5.0.1)
|
|
||||||
actionpack (>= 5.2)
|
actionpack (>= 5.2)
|
||||||
activesupport (>= 5.2)
|
|
||||||
railties (>= 5.2)
|
railties (>= 5.2)
|
||||||
rspec-core (~> 3.10)
|
reverse_markdown (2.1.1)
|
||||||
rspec-expectations (~> 3.10)
|
nokogiri
|
||||||
rspec-mocks (~> 3.10)
|
rexml (3.2.6)
|
||||||
rspec-support (~> 3.10)
|
rspec-core (3.12.2)
|
||||||
rspec-support (3.10.2)
|
rspec-support (~> 3.12.0)
|
||||||
rubocop (1.18.4)
|
rspec-expectations (3.12.3)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-mocks (3.12.6)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-rails (6.0.3)
|
||||||
|
actionpack (>= 6.1)
|
||||||
|
activesupport (>= 6.1)
|
||||||
|
railties (>= 6.1)
|
||||||
|
rspec-core (~> 3.12)
|
||||||
|
rspec-expectations (~> 3.12)
|
||||||
|
rspec-mocks (~> 3.12)
|
||||||
|
rspec-support (~> 3.12)
|
||||||
|
rspec-support (3.12.1)
|
||||||
|
rubocop (1.56.3)
|
||||||
|
base64 (~> 0.1.1)
|
||||||
|
json (~> 2.3)
|
||||||
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.0.0.0)
|
parser (>= 3.2.2.3)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
rexml
|
rexml (>= 3.2.5, < 4.0)
|
||||||
rubocop-ast (>= 1.8.0, < 2.0)
|
rubocop-ast (>= 1.28.1, < 2.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
rubocop-ast (1.9.0)
|
rubocop-ast (1.29.0)
|
||||||
parser (>= 3.0.1.1)
|
parser (>= 3.2.1.0)
|
||||||
rubocop-performance (1.11.4)
|
rubocop-performance (1.19.0)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
rubocop-ast (>= 0.4.0)
|
rubocop-ast (>= 0.4.0)
|
||||||
rubocop-rails (2.11.3)
|
rubocop-rails (2.21.0)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.33.0, < 2.0)
|
||||||
ruby-graphviz (1.2.5)
|
ruby-graphviz (1.2.5)
|
||||||
rexml
|
rexml
|
||||||
ruby-progressbar (1.11.0)
|
ruby-progressbar (1.13.0)
|
||||||
ruby2_keywords (0.0.5)
|
ruby2_keywords (0.0.5)
|
||||||
rubyzip (2.3.2)
|
rubyzip (2.3.2)
|
||||||
sass-rails (6.0.0)
|
sass-rails (6.0.0)
|
||||||
@@ -323,139 +339,145 @@ GEM
|
|||||||
sprockets (> 3.0)
|
sprockets (> 3.0)
|
||||||
sprockets-rails
|
sprockets-rails
|
||||||
tilt
|
tilt
|
||||||
selenium-webdriver (3.142.7)
|
selenium-webdriver (4.10.0)
|
||||||
childprocess (>= 0.5, < 4.0)
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
rubyzip (>= 1.2.2)
|
rubyzip (>= 1.2.2, < 3.0)
|
||||||
|
websocket (~> 1.0)
|
||||||
semantic_range (3.0.0)
|
semantic_range (3.0.0)
|
||||||
sentry-rails (4.6.5)
|
sentry-rails (5.5.0)
|
||||||
railties (>= 5.0)
|
railties (>= 5.0)
|
||||||
sentry-ruby-core (~> 4.6.0)
|
sentry-ruby (~> 5.5.0)
|
||||||
sentry-ruby (4.6.5)
|
sentry-ruby (5.5.0)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
faraday (>= 1.0)
|
sentry-sidekiq (5.5.0)
|
||||||
sentry-ruby-core (= 4.6.5)
|
sentry-ruby (~> 5.5.0)
|
||||||
sentry-ruby-core (4.6.5)
|
|
||||||
concurrent-ruby
|
|
||||||
faraday
|
|
||||||
sentry-sidekiq (4.6.5)
|
|
||||||
sentry-ruby-core (~> 4.6.0)
|
|
||||||
sidekiq (>= 3.0)
|
sidekiq (>= 3.0)
|
||||||
sidekiq (6.2.1)
|
sidekiq (7.1.4)
|
||||||
connection_pool (>= 2.2.2)
|
concurrent-ruby (< 2)
|
||||||
rack (~> 2.0)
|
connection_pool (>= 2.3.0)
|
||||||
redis (>= 4.2.0)
|
rack (>= 2.2.4)
|
||||||
simplecov (0.21.2)
|
redis-client (>= 0.14.0)
|
||||||
|
simplecov (0.22.0)
|
||||||
docile (~> 1.1)
|
docile (~> 1.1)
|
||||||
simplecov-html (~> 0.11)
|
simplecov-html (~> 0.11)
|
||||||
simplecov_json_formatter (~> 0.1)
|
simplecov_json_formatter (~> 0.1)
|
||||||
simplecov-html (0.12.3)
|
simplecov-html (0.12.3)
|
||||||
simplecov_json_formatter (0.1.3)
|
simplecov_json_formatter (0.1.4)
|
||||||
solargraph (0.43.0)
|
snaky_hash (2.0.1)
|
||||||
|
hashie
|
||||||
|
version_gem (~> 1.1, >= 1.1.1)
|
||||||
|
solargraph (0.49.0)
|
||||||
backport (~> 1.2)
|
backport (~> 1.2)
|
||||||
benchmark
|
benchmark
|
||||||
bundler (>= 1.17.2)
|
bundler (~> 2.0)
|
||||||
diff-lcs (~> 1.4)
|
diff-lcs (~> 1.4)
|
||||||
e2mmap
|
e2mmap
|
||||||
jaro_winkler (~> 1.5)
|
jaro_winkler (~> 1.5)
|
||||||
kramdown (~> 2.3)
|
kramdown (~> 2.3)
|
||||||
kramdown-parser-gfm (~> 1.1)
|
kramdown-parser-gfm (~> 1.1)
|
||||||
parser (~> 3.0)
|
parser (~> 3.0)
|
||||||
reverse_markdown (>= 1.0.5, < 3)
|
rbs (~> 2.0)
|
||||||
rubocop (>= 0.52)
|
reverse_markdown (~> 2.0)
|
||||||
|
rubocop (~> 1.38)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
tilt (~> 2.0)
|
tilt (~> 2.0)
|
||||||
yard (~> 0.9, >= 0.9.24)
|
yard (~> 0.9, >= 0.9.24)
|
||||||
spring (2.1.1)
|
spring (4.1.1)
|
||||||
sprockets (4.0.2)
|
sprockets (4.2.1)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
rack (> 1, < 3)
|
rack (>= 2.2.4, < 4)
|
||||||
sprockets-rails (3.2.2)
|
sprockets-rails (3.4.2)
|
||||||
actionpack (>= 4.0)
|
actionpack (>= 5.2)
|
||||||
activesupport (>= 4.0)
|
activesupport (>= 5.2)
|
||||||
sprockets (>= 3.0.0)
|
sprockets (>= 3.0.0)
|
||||||
thor (1.1.0)
|
thor (1.2.2)
|
||||||
tilt (2.0.10)
|
tilt (2.2.0)
|
||||||
turbo-rails (0.6.0)
|
timeout (0.4.0)
|
||||||
rails (>= 6.0.0)
|
turbo-rails (1.4.0)
|
||||||
|
actionpack (>= 6.0.0)
|
||||||
|
activejob (>= 6.0.0)
|
||||||
|
railties (>= 6.0.0)
|
||||||
typhoeus (1.4.0)
|
typhoeus (1.4.0)
|
||||||
ethon (>= 0.9.0)
|
ethon (>= 0.9.0)
|
||||||
tzinfo (2.0.4)
|
tzinfo (2.0.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
unicode-display_width (2.0.0)
|
unicode-display_width (2.4.2)
|
||||||
|
version_gem (1.1.3)
|
||||||
warden (1.2.9)
|
warden (1.2.9)
|
||||||
rack (>= 2.0.9)
|
rack (>= 2.0.9)
|
||||||
web-console (4.1.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)
|
||||||
webdrivers (4.6.0)
|
webdrivers (5.3.1)
|
||||||
nokogiri (~> 1.6)
|
nokogiri (~> 1.6)
|
||||||
rubyzip (>= 1.3.0)
|
rubyzip (>= 1.3.0)
|
||||||
selenium-webdriver (>= 3.0, < 4.0)
|
selenium-webdriver (~> 4.0, < 4.11)
|
||||||
webpacker (5.4.0)
|
webpacker (5.4.4)
|
||||||
activesupport (>= 5.2)
|
activesupport (>= 5.2)
|
||||||
rack-proxy (>= 0.6.1)
|
rack-proxy (>= 0.6.1)
|
||||||
railties (>= 5.2)
|
railties (>= 5.2)
|
||||||
semantic_range (>= 2.3.0)
|
semantic_range (>= 2.3.0)
|
||||||
websocket-driver (0.7.5)
|
websocket (1.2.9)
|
||||||
|
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)
|
||||||
xpath (3.2.0)
|
xpath (3.2.0)
|
||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
yard (0.9.26)
|
yard (0.9.34)
|
||||||
zeitwerk (2.4.2)
|
zeitwerk (2.6.11)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
awesome_print
|
awesome_print
|
||||||
bcrypt (~> 3.1.16)
|
bcrypt
|
||||||
bootsnap (>= 1.4.4)
|
bootsnap
|
||||||
brakeman (~> 5.0.0)
|
brakeman (~> 5.0.0)
|
||||||
byebug
|
byebug
|
||||||
capybara (>= 3.26)
|
capybara
|
||||||
database_cleaner
|
database_cleaner
|
||||||
devise (~> 4.8.0)
|
devise
|
||||||
dotenv-rails (~> 2.7.6)
|
dotenv-rails
|
||||||
listen (~> 3.3)
|
listen (~> 3.3)
|
||||||
lograge (~> 0.11.2)
|
lograge
|
||||||
mobility (~> 1.1.3)
|
mobility
|
||||||
omniauth (~> 2.0.4)
|
omniauth (~> 2.0.4)
|
||||||
omniauth-bnet (~> 2.0.1)!
|
omniauth-bnet (~> 2.0.1)!
|
||||||
omniauth-rails_csrf_protection (~> 1.0.0)
|
omniauth-rails_csrf_protection (~> 1.0.0)
|
||||||
pagy (~> 4.3.0)
|
pagy
|
||||||
pg (~> 1.1)
|
pg (~> 1.1)
|
||||||
pry-rails (~> 0.3.9)
|
pry-rails
|
||||||
puma (~> 5.4.0)
|
puma (~> 5.4.0)
|
||||||
rack-mini-profiler (~> 2.3.2)
|
rack-mini-profiler
|
||||||
rails (~> 6.1.4)
|
rails (~> 7.0.8)
|
||||||
rails-erd
|
rails-erd
|
||||||
rails-i18n (~> 6.0.0)
|
rails-i18n
|
||||||
rbattlenet (~> 2.2.9)!
|
rbattlenet (~> 2.2.9)!
|
||||||
redis (~> 4.2.5)
|
redis
|
||||||
rspec-rails
|
rspec-rails
|
||||||
rubocop
|
rubocop
|
||||||
rubocop-performance
|
rubocop-performance
|
||||||
rubocop-rails
|
rubocop-rails
|
||||||
sass-rails (>= 6)
|
sass-rails (>= 6)
|
||||||
selenium-webdriver
|
selenium-webdriver
|
||||||
sentry-rails (~> 4.6.5)
|
sentry-rails (~> 5.5.0)
|
||||||
sentry-ruby (~> 4.6.5)
|
sentry-ruby (~> 5.5.0)
|
||||||
sentry-sidekiq (~> 4.6.5)
|
sentry-sidekiq (~> 5.5.0)
|
||||||
sidekiq (~> 6.2.1)
|
sidekiq (~> 7.1)
|
||||||
simplecov
|
simplecov
|
||||||
solargraph
|
solargraph
|
||||||
spring
|
spring
|
||||||
turbo-rails (~> 0.6.0)
|
turbo-rails
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
web-console (>= 4.1.0)
|
web-console
|
||||||
webdrivers
|
webdrivers
|
||||||
webpacker (~> 5.0)
|
webpacker (~> 5.0)
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 3.0.2p107
|
ruby 3.2.1p31
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.2.22
|
2.2.22
|
||||||
|
|||||||
Reference in New Issue
Block a user