-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
72 lines (56 loc) · 2.18 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/CodiTramuntana/decidim", branch: "release/0.28-stable_decidim_templates" }.freeze
gem "decidim", DECIDIM_VERSION
gem "decidim-templates", DECIDIM_VERSION
#### Custom gems and modifications block start ####
gem "decidim-home", path: "decidim-home"
gem "decidim-process-extended", path: "decidim-process-extended"
gem "decidim-recaptcha", path: "decidim-recaptcha"
gem "decidim-regulations", path: "decidim-regulations"
gem "decidim-top_comments", path: "decidim-top_comments"
gem "decidim-cdtb", git: "https://github.com/CodiTramuntana/decidim-module-cdtb.git", tag: "v0.3.0"
gem "decidim-challenges", git: "https://github.com/gencat/decidim-module-challenges.git", tag: "v0.5.0"
gem "decidim-department_admin", "~> 0.8.0"
gem "decidim-idcat_mobil", git: "https://github.com/gencat/decidim-module-idcat_mobil.git", tag: "v0.5.0"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git"
gem "decidim-verifications-members_picker", "~> 0.0.7"
#### Custom gems and modifications block end ####
gem "soda-ruby", require: false
gem "puma"
# TODO: Psych problem: https://github.com/laserlemon/figaro/issues/289
# gem "figaro"
# This gem is an alternative to Figaro meanwhile fix that problem in Figaro.
# https://github.com/hlascelles/figjam
gem "figjam"
gem "wkhtmltopdf-binary"
gem "daemons"
gem "deface"
gem "delayed_job_active_record"
gem "whenever", require: false
gem "recaptcha"
# Error uninitialized constant WickedPdf::WickedPdfHelper::Assets::SprocketsEnvironment::Sprockets
# in update to 2.8.0
# https://github.com/mileszs/wicked_pdf/issues/1102
gem "wicked_pdf", "~> 2.7.0"
group :development, :test do
gem "bootsnap"
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "faker"
gem "rubocop-faker"
# Set versions because Property AutoCorrect errors.
gem "rspec-rails", "~> 6.0.4"
gem "rubocop-factory_bot", "2.25.1"
gem "rubocop-rspec", "2.26.1"
end
group :development do
gem "letter_opener_web"
gem "listen"
gem "web-console"
end
group :test do
gem "capybara-screenshot"
gem "database_cleaner"
end