-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
76 lines (56 loc) · 2.31 KB
/
Gemfile
File metadata and controls
76 lines (56 loc) · 2.31 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/DecidimAustria/decidim", branch: '0.29-live' }
gem "decidim", DECIDIM_VERSION
# gem "decidim-alternative_landing", git: "https://github.com/DecidimAustria/decidim-module-alternative_landing", branch: 'update-to-decidim-0.27'
gem "decidim-alternative_landing", git: "https://github.com/Platoniq/decidim-module-alternative_landing", branch: 'main'
#gem "decidim-alternative_landing", git: "https://github.com/Platoniq/decidim-module-alternative_landing", branch: 'release/0.28-stable'
# use decidim_awesome version > 0.12.x
gem "decidim-decidim_awesome"
# gem "decidim-conferences", DECIDIM_VERSION
#gem "decidim-consultations", DECIDIM_VERSION
# gem "decidim-elections", DECIDIM_VERSION
# gem "decidim-initiatives", DECIDIM_VERSION
# gem "decidim-templates", DECIDIM_VERSION
gem "decidim-amazon_translate"
#gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: 'main'
#gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: 'release/0.28-stable'
# Get latest CLDR changes to fix bug with count :zero
# remove when this commit gets released in a version https://github.com/ruby-i18n/i18n/commit/c78ca610b64712037e5726adeaf7b84fa96eded9
gem "i18n"#, git: "https://github.com/ruby-i18n/i18n", branch: "master"
gem 'aws-sdk-s3'
gem "aws-sdk-translate", '~> 1'
#gem "deepl-rb", require: "deepl"
gem "bootsnap", "~> 1.3"
# Fix logger error by defining the concurrent-ruby version
#gem 'concurrent-ruby', '1.3.4'
gem "puma", ">= 5.0.0"
#gem "faker", "~> 3.2"
gem 'hiredis'
gem "redis", :require => ["redis", "redis/connection/hiredis"]
gem "stackprof"
gem "sentry-ruby"
gem "sentry-rails"
#gem 'sidekiq', '<7'
gem 'virtus', '~> 1.0.5'
gem "wicked_pdf", "~> 2.1"
gem "rectify", "~> 0.13.0"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "brakeman", "~> 6.0"
gem "net-imap", "~> 0.2.3"
gem "net-pop", "~> 0.1.1"
gem "net-smtp", "~> 0.3.1"
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "easy_translate", "~> 0.5.1"
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "solargraph"
gem "web-console", "~> 4.2"
end
group :production do
end
gem "good_job", "~> 3.27"