forked from OwnYourData/oyd-pia2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (47 loc) · 1.13 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
source 'https://rubygems.org'
ruby '2.5.7'
gem 'rails', '~> 5.2.3'
gem 'bootstrap-sass'
gem 'popper_js'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.11'
gem 'devise'
gem 'doorkeeper'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'api_pagination_headers'
gem 'httparty'
gem 'font-awesome-rails'
gem 'rqrcode'
gem 'rbnacl'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'rack-cors', ">= 1.0.4", :require => 'rack/cors'
gem 'bcrypt', '~> 3.1.7'
gem 'merkle-hash-tree'
gem 'nokogiri'
gem 'rails-html-sanitizer', '~> 1.0.4'
gem 'rswag'
gem 'railties'
gem 'actionview'
gem 'rspec'
gem 'leaflet-rails'
# 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 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'better_errors'
gem 'annotate'
end