-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (40 loc) · 1.51 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = "0.27.5"
gem "decidim", DECIDIM_VERSION
gem "decidim-consultations", DECIDIM_VERSION
gem "decidim-catcomu_managers", path: "./decidim-module-catcomu_managers"
gem "decidim-alternative_landing", git: "https://github.com/Platoniq/decidim-module-alternative_landing", branch: "release/0.27-stable"
gem "decidim-civicrm", git: "https://github.com/Platoniq/decidim-module-civicrm"
gem "decidim-decidim_awesome", "~> 0.10.2"
gem "decidim-direct_verifications", git: "https://github.com/Platoniq/decidim-verifications-direct_verifications"
gem "decidim-navigation_maps", git: "https://github.com/Platoniq/decidim-module-navigation_maps", branch: "release/0.27-stable"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "release/0.27-stable"
gem "bootsnap", "~> 1.11.0"
gem "health_check"
gem "puma", ">= 5.0.0"
gem "uglifier", "~> 4.1"
gem "faker", "~> 2.14"
gem "rspec"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "rubocop-faker"
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console"
end
group :production do
gem "aws-sdk-s3", require: false
gem "fog-aws" # to remove once images migrated
gem "sentry-rails"
gem "sentry-ruby"
gem "sidekiq", "~> 6.0"
gem "sidekiq-cron"
end
gem "whenever", require: false