This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (67 loc) · 1.72 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
70
71
72
73
74
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.2'
gem 'puma'
gem 'rails', '~> 7'
gem 'active_model_serializers'
gem 'activeresource'
gem 'active_response', git: 'https://github.com/ontola/active_response', branch: :master
gem 'acts_as_tenant', git: 'https://github.com/ArthurWD/acts_as_tenant', branch: :master
gem 'bootsnap'
gem 'bugsnag'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'emp_json', '1.3.0'
gem 'fast_jsonapi', git: 'https://github.com/fast-jsonapi/fast_jsonapi', ref: '2de80d48896751d30fb410e042fd21a710100423'
gem 'health_check'
gem 'html_truncator'
gem 'json-ld'
gem 'jwt'
gem 'linked_rails', '0.0.4.pre.g4c8e21c9f'
gem 'mailjet'
gem 'nokogiri'
gem 'oauth2'
gem 'oj'
gem 'openid_connect'
gem 'pragmatic_context'
gem 'pundit'
gem 'rdf'
gem 'rdf-n3'
gem 'rdf-rdfa'
gem 'rdf-rdfxml', git: 'https://github.com/ruby-rdf/rdf-rdfxml', ref: 'dd99a73'
gem 'rdf-serializers', git: 'https://github.com/ontola/rdf-serializers', branch: 'refactor-includes'
gem 'rdf-turtle'
gem 'redcarpet'
gem 'roadie-rails'
gem 'sidekiq'
gem 'slim'
gem 'tzinfo-data'
gem 'uri_template'
group :development, :production do
gem 'pg'
end
group :development, :test do
gem 'binding_of_caller'
gem 'brakeman'
gem 'bundler-audit'
gem 'byebug', platform: :mri
gem 'rspec-rails'
gem 'rubocop', '~> 0.92.0'
gem 'rubocop-rails', '~> 2.5.2'
gem 'rubocop-rspec', '~> 1.39.0'
end
group :development do
gem 'better_errors'
gem 'listen'
gem 'web-console'
end
group :test do
gem 'assert_difference'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'fakeredis',
require: false,
git: 'https://github.com/magicguitarist/fakeredis',
branch: 'fix-sadd-return-when-0-or-1'
gem 'sqlite3'
gem 'webmock'
end