-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
47 lines (31 loc) · 1015 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
41
42
43
44
45
46
47
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = "0.27.2"
gem "decidim", DECIDIM_VERSION
gem "decidim-conferences", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "master"
gem "decidim-decidim_awesome", git: "https://github.com/decidim-ice/decidim-module-decidim_awesome.git", branch: "main"
# Performance
gem "appsignal"
gem "bootsnap"
gem "puma"
gem "faker", "~> 2.14"
gem "wicked_pdf", "~> 2.1"
gem 'sidekiq'
gem "aws-sdk-s3", require: false
# Fixes an error with Ruby 3.1.2 and Psych 4.0.0
gem "psych", "< 4"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 4.0"
end
gem "matrix", "~> 0.4.2"