-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (25 loc) · 804 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.1'
gem 'rails', '~> 6.0.3', '>= 6.0.3.3'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'jbuilder', '~> 2.7'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rack-cors'
gem 'jwt', '~> 2.2', '>= 2.2.2'
gem 'faker', '~> 1.6', '>= 1.6.6'
group :development, :test do
gem 'rspec-rails', '~> 4.0', '>= 4.0.1'
gem 'shoulda-matchers', '~> 4.4', '>= 4.4.1'
gem 'factory_bot_rails', '~> 6.1'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'guard-rspec', '~> 4.7', '>= 4.7.3'
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]