-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGemfile
41 lines (36 loc) · 1007 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.1'
gem 'active_model_serializers'
gem 'aws-sdk-s3'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'devise_token_auth'
gem 'mini_magick'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.12'
gem 'pundit'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 6.0.0'
gem 'rswag-api'
gem 'rswag-ui'
gem 'prawn'
gem 'chewy', git: 'https://github.com/noellabo/chewy.git', branch: 'es6-client-compatibility-workaround-for-es7-for-chewy-v5.1.0'
group :development, :test do
gem 'coveralls', require: false
gem 'factory_bot_rails'
gem 'faker'
gem 'pdf-inspector', require: 'pdf/inspector'
gem 'pry-byebug'
gem 'pry-rails'
gem 'pundit-matchers'
gem 'rspec-rails'
gem 'rswag-specs'
gem 'shoulda-matchers'
gem 'elasticsearch-extensions'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end