-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
81 lines (73 loc) · 1.77 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Gems for all environments
gem 'doorkeeper'
gem 'doorkeeper-jwt'
gem 'active_model_serializers'
gem 'aws-sdk-s3', require: false
gem 'bootsnap', '>= 1.4.2', require: false
gem 'cocoon'
gem 'multi_json'
gem 'rswag', '~> 2.5.1'
# jitera-hook-for-devise
gem 'devise'
gem 'devise-i18n'
gem 'devise-i18n-views'
gem 'dotenv-rails'
gem 'enum_help'
# jitera-hook-for-fcm
gem 'image_processing', '~> 1.12.1'
gem 'jbuilder', '~> 2.11.5'
# jitera-hook-for-jwt
gem 'kaminari'
gem 'lograge'
gem 'mysql2', '~> 0.5.3'
gem 'puma', '~> 5.5.2'
gem 'pundit'
gem 'rack-cors'
gem 'rails', '~> 7.0.1'
gem 'rails-i18n'
# jitera-hook-for-rollbar
gem 'sass-rails', '~> 5'
gem 'sidekiq'
gem 'simple_form'
gem 'slim'
gem 'turbo-rails'
# jitera-hook-for-twilio
gem 'importmap-rails', '~> 1.0'
# 1.13.0 above is not compatible with M1 Mac Docker environment, need to update docker image later
gem 'nokogiri', '1.12.5'
gem 'rspec'
group :production, :staging do
end
group :development, :test do
gem 'brakeman'
gem 'byebug', platforms: %w[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'rspec-rails', '~> 4.0.1'
gem 'shoulda-matchers'
end
group :development do
gem 'letter_opener'
gem 'listen', '~> 3.4.1'
gem 'rails-erd'
gem 'rubocop'
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'spring', '~> 3.0.0'
gem 'spring-commands-rspec'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'database_cleaner-active_record'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: %w[mingw mswin x64_mingw jruby]
# jitera-hook-for-pdf-feature