-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (36 loc) · 919 Bytes
/
Copy pathGemfile
File metadata and controls
43 lines (36 loc) · 919 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: "release/0.24-stable" }
gem "decidim", DECIDIM_VERSION
gem "puma", "~> 5"
gem "bootsnap", "~> 1.3"
gem "uglifier", "~> 4.1"
gem "faker"
gem "decidim-elections_census", path: "decidim-module-elections_census"
gem "charlock_holmes"
gem "spreadsheet"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
gem "jose"
gem 'openssl', '~> 2.1'
gem 'jwt'
gem 'i18n-tasks'
end
group :production do
gem 'fog-aws'
gem 'dalli'
gem 'sendgrid-ruby'
gem 'newrelic_rpm'
gem 'lograge'
gem 'sentry-raven'
gem 'sidekiq'
end