-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (38 loc) · 970 Bytes
/
Gemfile
File metadata and controls
44 lines (38 loc) · 970 Bytes
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'bootsnap', '>= 1.4.2', require: false
gem "chartkick"
gem 'devise'
gem 'faker'
gem 'groupdate'
gem 'jbuilder', '~> 2.7'
gem 'jquery'
gem 'mimemagic'
gem 'pg'
gem 'puma', '~> 4.1'
gem 'rails', '~> 6.1'
gem 'redis', '~> 4.0'
gem 'rest-client'
gem "rqrcode", "~> 2.0"
gem 'rubocop'
gem 'rubocop-rails'
gem 'sass-rails'
gem 'simple_form'
gem 'webpacker'
gem 'will_paginate', '~> 3.1.0'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
end
group :test do
gem 'database_cleaner-active_record'
end
group :development do
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]