forked from pieforproviders/pieforproviders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
76 lines (66 loc) · 1.94 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.6'
gem 'aws-sdk-s3', '~> 1'
gem 'blueprinter', '~> 0.25.3'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'data_migrate'
gem 'devise'
gem 'devise-jwt'
gem 'faker'
gem 'good_job', '~> 1.8'
gem 'hash_dig_and_collect'
gem 'holidays'
gem 'money-rails'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 5.2'
gem 'pundit', '~> 2.1'
gem 'rails', '~> 6.1.3'
gem 'rswag-api', '>= 2.3.0'
gem 'rswag-ui', '>= 2.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
group :development, :test do
gem 'brakeman'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'cypress-on-rails', '~> 1.9'
gem 'dotenv-rails'
gem 'factory_bot_rails' # we use factorybot for seeding so it must be in both groups
gem 'pry'
gem 'pry-remote'
gem 'rspec-rails'
gem 'rswag-specs', '>= 2.3.0'
gem 'rubocop-performance'
gem 'rubocop-rails'
end
group :development do
gem 'annotate', github: 'Vasfed/annotate_models', branch: 'rails6_warning'
gem 'guard-rspec', require: false
gem 'letter_opener_web', '~> 1.4'
gem 'listen', '>= 3.0.5', '< 3.5'
gem 'pgreset', '~> 0.3'
gem 'rails-erd'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'database_cleaner'
gem 'json-schema'
gem 'shoulda-matchers'
gem 'simplecov', require: false
end
group :production do
gem 'sentry-raven'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'mocha', group: :test