-
Notifications
You must be signed in to change notification settings - Fork 111
/
Gemfile
125 lines (112 loc) · 3.01 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# frozen_string_literal: true
ruby '>= 3.3.0'
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'acts-as-taggable-on'
gem 'ruby-openai'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# NOTE Не обновил версию рельсы, т.к. https://github.com/charlotte-ruby/impressionist/issues/302
gem 'rails', '~> 7'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
# gem 'sass-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
gem 'redis'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
gem 'bootstrap'
gem 'jquery-rails'
gem 'sorbet'
gem 'sprockets-rails'
gem 'terser'
# Reduces boot times through caching; required in config/boot.rb
gem 'aasm'
gem 'active_form_model', '~> 0.4.1'
gem 'bootsnap', require: false
gem 'browser'
gem 'cocoon'
gem 'counter_culture'
gem 'devise'
gem 'devise-bootstrap-views'
gem 'devise-i18n'
gem 'dotenv-rails'
gem 'dry-container'
gem 'enumerize'
gem 'flash_rails_messages'
gem 'geocoder'
gem 'gon'
gem 'impressionist'
gem 'kaminari'
gem 'meta-tags'
gem 'net-imap', require: false
gem 'net-pop', require: false
gem 'net-smtp', require: false
gem 'nokogiri'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'paint'
gem 'paper_trail'
gem 'phonelib'
gem 'pundit'
gem 'rails-i18n'
gem 'ransack'
gem 'recaptcha'
gem 'redcarpet', github: 'vmg/redcarpet'
gem 'sassc-rails'
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'simple_form'
gem 'slim-rails'
gem 'translit'
gem 'validate_url'
gem 'valid_email2'
gem 'wicked_pdf'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'slim_lint'
gem 'sqlite3', '~> 1.4'
gem 'wkhtmltopdf-binary'
end
group :development do
gem 'annotate'
gem 'ruby-lsp-rails'
gem 'yard'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'html2slim', github: 'slim-template/html2slim'
gem 'i18n-debug'
gem 'listen'
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'reek'
gem 'rubocop'
gem 'solargraph'
gem 'spring'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'minitest-power_assert'
gem 'selenium-webdriver'
gem 'simplecov', require: false
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :production, :staging do
gem 'pg'
end
group :production do
gem 'wkhtmltopdf-heroku'
end