-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
53 lines (41 loc) · 1.31 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 '2.7.3'
DECIDIM_VERSION = "0.26.2"
gem 'decidim', git: "https://github.com/PopulateTools/decidim", branch: "release/0.26-stable-budgets-improvements"
# A Decidim module to customize the localized terms in the system.
# Read more: https://github.com/mainio/decidim-module-term_customizer
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "release/0.26-stable"
gem "decidim-verify_wo_registration", git: "https://github.com/PopulateTools/decidim-verify_wo_registration.git", branch: "improve-ui-texts"
gem "decidim-decidim_awesome"
gem 'virtus-multiparams'
gem 'doorkeeper', '5.5.4'
gem 'faker'
gem 'puma'
gem 'uglifier'
gem "progressbar"
# Performance
gem "appsignal", "= 3.0.6"
group :development, :test do
gem 'byebug', platform: :mri
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen'
end
group :production, :staging do
gem 'dalli'
gem 'sendgrid-ruby'
gem 'sidekiq', '~> 6.5', '>= 6.5.7'
gem 'fog-aws'
gem "aws-sdk-s3", require: false
# security fix for excon gem, which is a fog-aws dependency
gem 'excon', '>= 0.71.0'
end
group :test do
gem 'database_cleaner'
gem 'rspec-rails'
end