-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
65 lines (47 loc) · 1.47 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim.git", branch: "release/0.24-stable" }.freeze
gem "decidim", DECIDIM_VERSION
gem "decidim-anonymous_proposals", git: "https://github.com/PopulateTools/decidim-module-anonymous_proposals", branch: "release/0.24-stable"
gem "decidim-decidim_awesome", "~> 0.7.0"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "master"
gem "bootsnap", "~> 1.4"
gem "dotenv-rails"
gem "globalid", "~> 1.0"
gem "puma", "~> 5.3.1"
gem "uglifier", "~> 4.1"
gem "faker", "~> 2.14"
gem "ruby-progressbar"
gem "letter_opener_web", "~> 1.3"
gem "deepl-rb", require: "deepl"
gem "sprockets", "~> 3.7"
gem "activejob-uniqueness", require: "active_job/uniqueness/sidekiq_patch"
gem "fog-aws"
gem "rack-attack", "~> 6.6"
gem "sys-filesystem"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "climate_control", "~> 1.2"
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
end
group :production do
gem "dalli"
gem "health_check", "~> 3.1"
gem "lograge"
gem "newrelic_rpm"
gem "passenger"
gem "sendgrid-ruby"
gem "sentry-rails"
gem "sentry-ruby"
gem "sentry-sidekiq"
gem "sidekiq"
gem "sidekiq_alive", "~> 2.2"
gem "sidekiq-scheduler"
end