This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (63 loc) · 1.43 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
source 'https://rubygems.org'
ruby '~> 2.7.0'
gem 'active_model_serializers', '~> 0.9.3'
gem 'active_skin', github: 'SoftwareBrothers/active_skin'
gem 'activeadmin', '~> 2.6'
gem 'activeadmin_addons'
gem 'aws-sdk-s3', '~> 1.0'
gem 'bootsnap', require: false
gem 'data_migrate'
gem 'devise'
gem 'devise-i18n'
gem 'enumerize'
gem 'jbuilder', '~> 2.7'
gem 'marcel', '~> 0.3.3'
gem 'pg'
gem 'power-types'
gem 'puma', '~> 4.1'
gem 'rack-cors', '~> 1.1'
gem 'rails', '~> 6.0.3', '>= 6.0.3.1'
gem 'rails-i18n'
gem 'responders'
gem 'sass-rails', '>= 6'
gem 'sentry-raven'
gem 'simple_token_authentication', '~> 1.0'
gem 'sinatra', github: 'sinatra/sinatra'
gem 'sidekiq', '~> 4.1.4'
gem 'strong_migrations'
gem 'turbolinks', '~> 5'
gem 'versionist'
gem 'webpacker', '~> 4.0'
gem 'doorkeeper'
gem 'httparty'
group :development do
gem 'annotate', '~> 3.0'
gem 'listen'
gem 'spring'
end
group :test do
gem 'rspec_junit_formatter', '0.2.2'
gem 'shoulda-matchers', require: false
end
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec', require: false
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-nc', require: false
gem 'rspec-rails'
gem 'rubocop', '~> 0.82.0'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
end
group :production do
gem 'rack-timeout'
end
group :production, :development, :test do
gem 'tzinfo-data'
end