-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
75 lines (58 loc) · 1.35 KB
/
Gemfile
File metadata and controls
75 lines (58 loc) · 1.35 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.0.6'
gem 'rails', '~> 7.1.3'
gem 'bootsnap', require: false
gem 'pg'
gem 'puma'
gem 'rack-cors'
gem 'jsbundling-rails'
gem 'mini_racer', platforms: :ruby
gem 'sass-rails'
gem 'stimulus-rails'
gem 'uglifier', '>= 1.3.0'
gem 'bcrypt', '~> 3.1.7'
gem 'activerecord_where_assoc'
gem 'crono'
gem 'draper'
gem 'haml'
gem 'image_processing'
gem 'jb'
gem 'json', '>= 2.0.0'
gem 'jwt'
gem 'pagy'
gem 'paper_trail'
gem 'pundit'
gem 'ransack'
gem 'redis'
gem 'translate_enum'
gem 'turbo-rails'
group :development, :test do
gem 'byebug', platform: :mri
gem 'factory_bot_rails'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen', '~> 3.0.5'
gem 'web-console', '>= 3.3.0'
gem 'dotenv-rails'
gem 'rails_stats', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'pundit-matchers'
gem 'rspec-rails'
gem 'rspec-rake'
gem 'capybara'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'turnip'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]