-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile
85 lines (65 loc) · 2.33 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.1'
gem 'dotenv-rails', "~> 2.7", groups: [:development, :test], require: 'dotenv/rails-now'
gem 'rails', '~> 7.0'
# Use Puma as the app server
gem 'puma', '~> 4.3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 4.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.10'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# prevents .../ruby/3.2.0/psych/visitors/to_ruby.rb:432:in `visit_Psych_Nodes_Alias': Alias parsing was not enabled. To enable it, pass `aliases: true` to `Psych::load` or `Psych::safe_load`. (Psych::AliasesNotEnabled)
gem 'psych', '< 4'
gem 'pg', "~> 1.2"
gem 'sequel-rails', "~> 1.1"
gem 'lograge', "~> 0.11"
gem 'logstash-event', "~> 1.2"
gem 'sentry-raven', "~> 3.0"
gem 'sidekiq', "~> 6.0"
gem 'sidekiq-scheduler', "~> 3.0"
gem 'graphql', "~> 1.10"
gem 'graphiql-rails', "~> 1.7"
gem 'dry-rails', "~> 0.3.0"
gem 'dry-monads', "~> 1.4.0"
gem 'dry-view', "~> 0.7.0"
gem 'dry-cli', "~> 0.7.0"
gem 'dry-events', "~> 0.3.0"
gem 'dry-effects', "~> 0.1.0"
gem 'dry-container', "~> 0.8.0"
gem 'dry-auto_inject', "~> 0.8.0"
gem 'devise', "~> 4.7"
gem 'sequel-devise', "~> 0.0"
gem 'devise-bootstrap-views', '~> 1.1'
gem 'devise-token_authenticatable', "~> 1.1"
gem 'shrine', '~> 3.2'
gem 'ytdl', "~> 0.2.0"
gem 'slim-rails', "~> 3.2"
gem 'builder', "~> 3.2"
gem 'mimemagic', "~> 0.3"
gem 'amazing_print', "~> 1.2"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', "~> 11.1", platforms: [:mri, :mingw, :x64_mingw]
gem 'pry-rails', "~> 0.3"
gem 'rspec', "~> 3.9"
gem 'rspec-rails', "~> 4.0"
gem 'factory_bot_rails', "~> 5.2"
end
group :development do
# Preview mail in the browser instead of sending
gem 'letter_opener'
# Debug I18n keys
# gem 'i18n-debug'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console'
gem 'listen'
gem 'better_errors'
gem 'binding_of_caller'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]