-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (70 loc) · 1.57 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
source 'https://rubygems.org'
gem 'activeadmin', '~> 2.9'
gem 'activeadmin_addons'
gem 'activerecord-import'
gem 'aws-sdk-s3', '~> 1.0'
gem 'blurhash', '~> 0.1'
gem 'bootsnap', require: false
gem 'devise'
gem 'devise-i18n'
gem 'draper', '~> 3.1'
gem 'enumerize'
gem 'httparty'
gem 'image_processing', '~> 1.8'
gem 'jbuilder', '~> 2.7'
gem 'marcel', '~> 1.0'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'pg'
gem 'power-types'
gem 'power_api', '~> 2.0'
gem 'puma', '~> 5.0'
gem 'pundit'
gem 'rack-cors', '~> 1.1'
gem 'rails', '~> 6.1.4', '>= 6.1.4.6'
gem 'rails-i18n'
gem 'ruby-vips', '~> 2.1'
gem 'sass-rails', '>= 6'
gem 'scout_apm'
gem 'shakapacker', '~> 6.2.0'
gem 'shrine', '~> 3.0'
gem 'strong_migrations'
gem 'tzinfo-data'
group :development do
gem 'annotate', '~> 3.0'
gem 'listen'
gem 'spring'
end
group :test do
gem 'capybara'
gem 'rspec_junit_formatter', '~> 0.4'
gem 'shoulda-matchers', require: false
gem 'simplecov'
gem 'simplecov_linter_formatter', '~> 0.2'
gem 'simplecov_text_formatter'
gem 'webdrivers'
end
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec', require: false
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-nc', require: false
gem 'rspec-rails'
gem 'rswag-specs'
gem 'rubocop', '~> 1.9'
gem 'rubocop-performance'
gem 'rubocop-platanus'
gem 'rubocop-rails'
gem 'rubocop-rspec', '~> 2.2'
end
group :production do
gem 'heroku-stage'
gem 'rack-timeout'
end
gem "mjml-rails"