-
Notifications
You must be signed in to change notification settings - Fork 44
/
Gemfile
72 lines (63 loc) · 1.95 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
# encoding: UTF-8
# Copyright 2011-2013 innoQ Deutschland GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source 'https://rubygems.org'
# TODO: The following dependencies could be included by the "gemspec" command.
# There is only one problem: gemspec puts the dependencies automatically to a
# group (:development by default). This is not what we need.
gem 'rails', '~> 7.0.8'
gem 'puma', '< 7.0'
gem 'kaminari'
gem 'authlogic'
gem 'scrypt'
gem 'cancancan'
gem 'iq_rdf'
gem 'iq_triplestorage'
gem 'json'
gem 'rails_autolink'
gem 'faraday'
gem 'faraday_middleware'
gem 'nokogiri'
gem 'linkeddata'
gem 'rdf-vocab'
gem "deep_cloneable"
gem "bootstrap_form", "~> 4.0"
gem 'apipie-rails'
gem 'maruku', require: false
gem 'database_cleaner'
gem 'delayed_job_active_record'
gem 'carrierwave'
gem 'carrierwave-i18n'
gem 'faucet_pipeline_rails'
gem 'bootsnap', require: false
gem 'net-http' # silence already initialized constant errors for ruby < 3.0: https://github.com/ruby/net-imap/issues/16
# database adapters
# comment out those you do don't need or use a different Gemfile
#gem 'mysql2', '~> 0.4.0'
#gem 'sqlite3'
gem 'pg'
gem 'rack-mini-profiler'
group :development do
gem 'web-console', '>= 4.1.0'
gem 'listen', '~> 3.3'
end
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :test do
gem 'capybara'
gem 'cuprite'
gem 'webmock'
end