-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
35 lines (29 loc) · 842 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) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem('bcrypt', '~> 3.1.7')
gem('jwt', '~> 2.1.0')
gem('puma', '~> 6.4')
gem('rails', "~> 6.1")
gem('rubocop', '~> 1.56')
gem('sqlite3')
group :development, :test do
gem('byebug', platforms: [:mri, :mingw, :x64_mingw])
gem('rspec-rails', '~> 6.0', '>= 6.0.3')
gem('simple_command', "~> 0.1.0")
end
group :development do
gem('listen', '~> 3.2.0')
gem('spring')
gem('spring-watcher-listen', '~> 2.0.0')
gem('web-console', '~> 4.2')
end
group :test do
gem('database_cleaner', '~> 2.0', '>= 2.0.2')
gem('rspec')
gem('rspec-mocks')
gem('shoulda-matchers', '~> 5.3')
end
gem('tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby])