-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
40 lines (30 loc) · 1.11 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
# frozen_string_literal: true
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: "release/0.28-stable" }.freeze
source "https://rubygems.org"
ruby '3.1.4'
gem "decidim", DECIDIM_VERSION
gem "decidim-verify_wo_registration", git: "https://github.com/PopulateTools/decidim-verify_wo_registration.git", branch: "improve-ui-texts-redesign"
gem "decidim-file_authorization_handler", git: "https://github.com/PopulateTools/decidim-file_authorization_handler.git", branch: "upgrade/redesign"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "main"
gem "decidim-decidim_awesome", git: "https://github.com/decidim-ice/decidim-module-decidim_awesome.git", branch: "users_autoblock"
gem 'puma'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'uglifier'
gem 'faker'
gem "httparty", "~> 0.18.1"
group :development, :test do
gem 'byebug', platform: :mri
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'letter_opener_web'
gem 'listen'
gem 'web-console'
end
group :test do
gem 'database_cleaner'
end
group :production do
gem 'sentry-raven'
end