-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
74 lines (58 loc) · 2.05 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 RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/CodiTramuntana/decidim.git", branch: "release/0.27-stable" }.freeze
ruby RUBY_VERSION
gem "decidim", DECIDIM_VERSION
gem "decidim-consultations", DECIDIM_VERSION
gem "decidim-verifications", DECIDIM_VERSION
gem "decidim-action_delegator", git: "https://github.com/CodiTramuntana/decidim-module-action_delegator", branch: "release/0.27-legacy"
gem "decidim-cdtb", git: "https://github.com/CodiTramuntana/decidim-module-cdtb.git", branch: "main"
# This branch fix some translations in consultations.
gem "decidim-term_customizer", git: "https://github.com/CodiTramuntana/decidim-module-term_customizer.git", branch: "fix/translation_set_query_consultations_question"
gem "decidim-verifications-csv_email", git: "https://github.com/CodiTramuntana/decidim-verifications-csv_emails.git", tag: "v0.1.1"
gem "decidim-verifications-members_picker", git: "https://github.com/gencat/decidim-verifications-members_picker.git", tag: "0.0.5"
gem "omniauth-rails_csrf_protection", "~> 1.0"
gem "virtus-multiparams"
gem "deface"
gem "savon", "~> 2.12.0"
gem "wicked_pdf"
# temporal solution while gems embrace new psych 4 (the default in Ruby 3.1) behavior.
gem "psych", "< 4"
gem "puma"
gem "uglifier", ">= 1.3.0"
gem "webpacker"
gem "figaro", ">= 1.1.1"
gem "openssl"
# if deploying to a dedicated server
gem "daemons"
gem "delayed_job_active_record"
gem "whenever"
# elsif deploying to Heroku
# gem "redis"
# gem "sidekiq"
# group :production do
# gem "fog-aws"
# gem "rack-ssl-enforcer"
# gem "rails_12factor"
# end
# endif
group :development, :test do
# Fixed to 2.9.1 version in order to avoid sassc error
gem "better_errors", "~> 2.9.1"
gem "binding_of_caller"
gem "bootsnap"
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "faker"
end
group :development do
gem "letter_opener_web"
gem "listen"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end
group :test do
gem "rails-controller-testing"
end