33source 'https://rubygems.org'
44git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
55
6- ruby '2.7.7 '
6+ ruby '3.3.2 '
77
88gem 'activerecord' , '>= 6.1.7.1'
99# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10- gem 'rails' , '~> 7.0.4.2 '
10+ gem 'rails' , '~> 7.0.8.1 '
1111# Use sqlite3 as the database for Active Record
12- gem 'sqlite3' , '>= 1.4'
12+ # gem 'sqlite3', '>= 1.4'
1313# Use Puma as the app server
14- gem 'puma' , '>= 5. 6.4'
14+ gem 'puma' , '>= 6.4.2 '
1515# Use SCSS for stylesheets
1616gem 'sass-rails' , '>= 6'
1717# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacke
1818gem 'webpacker' , '>= 5.4.2'
1919# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
2020gem 'importmap-rails'
2121# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
22- gem 'turbo-rails'
22+ gem 'turbo-rails' , '~> 2.0.5'
2323# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
2424gem 'turbolinks' , '>= 5'
2525# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
@@ -35,6 +35,17 @@ gem 'actionpack', '>= 6.1.4.1'
3535# Reduces boot times through caching; required in config/boot.b
3636gem 'bootsnap' , '>= 1.4.4' , require : false
3737
38+ group :development do
39+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code
40+ gem 'web-console' , '>= 4.1.0'
41+ # Display performance information such as SQL time and flame graphs for each request in your browser.
42+ # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
43+ gem 'listen'
44+ gem 'rack-mini-profiler'
45+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
46+ gem 'spring'
47+ end
48+
3849group :development , :test do
3950 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
4051 gem 'byebug' , platforms : %i[ mri mingw x64_mingw ]
@@ -43,17 +54,7 @@ group :development, :test do
4354 gem 'rspec'
4455 gem 'rspec-rails'
4556 gem 'rubocop-rspec' , require : false
46- end
47-
48- group :development do
49- # Access an interactive console on exception pages or by calling 'console' anywhere in the code
50- gem 'web-console' , '>= 4.1.0'
51- # Display performance information such as SQL time and flame graphs for each request in your browser.
52- # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
53- gem 'listen' , '~> 3.3'
54- gem 'rack-mini-profiler' , '~> 2.0'
55- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
56- gem 'spring'
57+ gem 'rubocop-performance'
5758end
5859
5960group :test do
@@ -79,34 +80,43 @@ gem 'rubocop-rails'
7980gem 'action_policy'
8081gem 'active_storage_validations'
8182gem 'addressable' , '>= 2.8.0'
83+ gem "ahoy_matey"
8284gem 'betterlorem'
85+ gem 'closure_tree' , '>= 7.4.0'
8386gem 'devise'
8487gem 'dry-initializer-rails'
85- gem 'easy_captcha' , github : 'kopylovvlad /easy_captcha'
88+ gem 'easy_captcha' , path : 'vendor/gems /easy_captcha'
8689gem 'enumerize'
90+ gem 'friendly_id' , '~> 5.5.1'
8791gem 'grape'
8892gem 'image_processing' , '>= 1.12.2'
8993gem 'mini_magick'
9094gem 'nokogiri' , '>= 1.11.0.rc4'
9195gem 'open-uri'
96+ gem 'paper_trail' , '>= 15.1.0'
9297gem 'pg'
98+ gem 'rake' , '>= 13.2.1'
9399gem 'redcarpet'
94100gem 'reverse_markdown'
95- gem 'rmagick' , '~> 4.1.1'
101+ gem 'rmagick'
96102gem 'rollbar'
97103gem 'rubyzip'
104+ gem 'ruby-vips'
98105gem 'simple_command'
99106gem 'socksify' , require : false # TCP through a SOCKS5 proxy
100107gem 'telegram-bot'
101108
102109gem 'sidekiq'
110+ gem 'base64'
111+ gem 'mutex_m'
103112
104113gem 'bootstrap-sass'
105114gem 'bootstrap-will_paginate' , '~> 0.0.10'
106115gem 'font-awesome-rails'
107116gem 'font-awesome-sass' , '~> 5.15.1'
108117gem 'jquery-rails'
109118gem 'jquery-ui-rails'
119+ gem 'meta-tags'
110120gem 'rails_sortable'
111121gem 'therubyracer' , platforms : :ruby
112122gem 'will_paginate' , '~> 3.3.1'
0 commit comments