-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
77 lines (48 loc) · 2.32 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
75
76
77
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
# Temporary setting to get latest translations
# DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: "chore/l10n/release/0.28-stable" }
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: "release/0.28-stable" }
gem "decidim", DECIDIM_VERSION
gem "decidim-templates", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
### Awaiting upgrade to version 0.28 ###
# NOTE(d1): https://github.com/decidim-ice/decidim-module-decidim_awesome/issues/324
# gem "decidim-decidim_awesome", "0.11.1"
# NOTE(d1): required 0.28 upgrade work (?)
# gem "decidim-faceless", git: "https://github.com/digidemlab/decidim-module-faceless", branch: "release/0.26-stable"
# NOTE(d1): https://github.com/digidemlab/decidim-module-budgets_paper_ballots/issues/10
# gem "decidim-budgets_paper_ballots", git: "https://github.com/digidemlab/decidim-module-budgets_paper_ballots", branch: "release/0.26-stable"
### Additional Decidim Modules ###
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "main"
# gem "decidim-accountability_simple", git: "https://github.com/mainio/decidim-module-accountability_simple", branch: "develop"
# gem "decidim-socio_demographic_authorization_handler", git: "https://github.com/digidemlab/decidim-module-socio_demographic_authorization_handler", branch: "just-age-and-gender"
# gem "decidim-simple_proposal", git: "https://github.com/mainio/decidim-module-simple_proposal", branch: "main"
gem "decidim-analytics", git: "https://github.com/digidemlab/decidim-module-analytics"
gem "bootsnap", "~> 1.3"
gem "wicked_pdf"
gem "puma", ">= 6.3.1"
gem "faker", "~> 3.2"
gem "figaro"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0.1"
gem "web-console", "~> 3.5"
end
group :production do
gem "passenger"
gem "sidekiq", "~> 6.5.8"
gem "sidekiq-scheduler"
gem "sidekiq-failures"
gem "sinatra"
gem "decidim-antivirus", git: "https://github.com/mainio/decidim-module-antivirus", branch: "main"
end
gem "nokogiri", "~> 1.16"
gem "mini_portile2", "~> 2.8"