-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (61 loc) · 1.47 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.3'
gem 'administrate', github: 'orsa-scholis/administrate', branch: 'master'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'caxlsx_rails'
gem 'devise'
gem 'figaro'
gem 'globalize'
gem 'globalize-accessors'
gem 'httparty'
gem 'i18n-tasks'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.3'
gem 'rails', '~> 6.0.2.2'
gem 'rails-i18n'
gem 'rqrcode'
gem 'scenic'
gem 'sidekiq'
gem 'simple_form'
gem 'turbolinks', '~> 5'
gem 'validates_timeliness', '~> 5.0.0.alpha3'
gem 'webpacker', '~> 4.0'
group :development, :test do
gem 'brakeman', require: false
gem 'bullet'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '= 4.0.0.beta3'
gem 'rubocop'
gem 'rubocop-performance', require: false
gem 'rubocop-rails'
gem 'rubocop-rspec'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :production do
gem 'lograge'
gem 'redis'
gem 'sentry-raven'
end
group :test do
gem 'capybara'
gem 'faker'
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'webmock'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]