-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
115 lines (105 loc) · 2.91 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
# frozen_string_literal: true
ruby '3.2.6'
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.0'
# Use Puma as the app server
gem 'puma', '~> 6.0'
gem 'sass-rails', '>= 6'
# Reduces boot times through caching; required in config/boot.rb
gem 'activeadmin', '~> 3.2.5'
gem 'activeadmin_addons'
gem 'activeadmin_reorderable'
gem 'activeadmin-xls', git: 'https://github.com/shanser/activeadmin-xls',
branch: 'autoload'
gem 'activestorage-validator', '~> 0.4.0'
gem 'acts_as_list'
gem 'addressable'
gem 'ancestry', '~> 4.3'
gem 'auto_strip_attributes', '~> 2.6'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.3', '>= 4.3.1'
gem 'cancancan'
gem 'chartkick'
gem 'coffee-rails'
gem 'descriptive_statistics', '~> 2.4.0', require: 'descriptive_statistics/safe'
gem 'device_detector'
gem 'devise'
gem 'devise-i18n'
gem 'down'
gem 'ffaker'
gem 'geocoder'
gem 'google-api-client', '~> 0.53'
gem 'google_drive', '~> 3.0'
gem 'groupdate'
gem 'i18n-js', '~> 3.9.0'
gem 'inline_svg'
gem 'jbuilder'
gem 'jquery-rails'
gem 'jwt', '~> 2.6'
gem 'kaminari-i18n'
gem 'mailjet'
gem 'paranoia'
gem 'pg', '~> 1.0'
gem 'rack-cors', require: 'rack/cors'
gem 'rails-i18n'
gem 'recaptcha', '~> 5.16'
gem 'recipient_interceptor'
gem 'redcarpet'
gem 'redis'
gem 'rollbar'
gem 'rubyzip'
gem 'sidekiq', '< 8'
gem 'sidekiq-scheduler'
gem 'spreadsheet'
gem 'sprockets-rails'
gem 'truemail'
gem 'typhoeus'
gem 'view_component'
gem 'view_component_storybook'
gem 'web-console', group: :development
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary', '~> 0.12.6.5'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
source 'https://rails-assets.org' do
gem 'rails-assets-clipboard'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'bullet'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'listen', '~> 3.2'
gem 'rspec_junit_formatter', '~> 0.4.1'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-packaging', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rails-accessibility', require: false
gem 'rubocop-rspec', require: false
end
group :development do
gem 'foreman'
gem 'guard-rspec', require: false
gem 'guard-rubocop'
gem 'letter_opener'
gem 'rails-erd'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 3.0'
gem 'spring-commands-rspec'
gem 'ruby-lsp', '~> 0.22.1'
gem 'ruby-lsp-rails', '~> 0.3.27'
end
group :test do
gem 'capybara'
gem 'factory_bot_rails'
gem 'launchy'
gem 'pdf-reader'
gem 'shoulda-matchers'
gem 'timecop'
gem 'webmock'
end
group :production do
gem 'aws-sdk-s3', require: false
end