-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
35 lines (30 loc) · 811 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'apipie-rails', '~> 0.5.18'
gem 'bcrypt', '~> 3.1.16'
gem 'bootsnap', '~> 1.7', '>= 1.7.2', require: false
gem 'jwt'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.3'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 7.0', '>= 7.0.4'
group :development, :test do
gem 'bullet'
gem 'pry', '~> 0.12.2'
gem 'rubocop', '~> 1.36', require: false
end
group :test do
gem 'factory_bot_rails'
gem 'ffaker', '~> 2.2'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 4.1', '>= 4.1.2'
gem 'shoulda-matchers'
gem 'simplecov', require: false
end
group :development do
gem 'annotate'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end