-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (34 loc) · 969 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
36
37
38
39
40
source 'https://rubygems.org'
ruby '2.5.7'
gem 'rails', '~> 5.2.3'
gem 'sqlite3', '~> 1.3.6'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '>= 3.12.2'
gem 'doorkeeper', '~> 4.4.0'
gem 'rack-cors', ">= 1.0.4", require: 'rack/cors'
gem 'jbuilder'
gem 'rbnacl'
gem 'httparty'
gem 'merkle-hash-tree'
gem 'responders'
gem 'sprockets', '~> 3.7'
gem 'rswag'
gem 'linkeddata'
gem 'rdf'
gem 'rdf-trig'
gem 'delayed_job_active_record'
# update for security fixes
gem 'loofah', '~> 2.3', '>= 2.3.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'better_errors'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'annotate'
end