-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
42 lines (31 loc) · 1.02 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
# frozen_string_literal: true
DECIDIM_VERSION = { git: 'https://github.com/decidim/decidim', tag: 'v0.28.0' }.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: "master"
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 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
end
group :test do
gem 'database_cleaner'
end
group :production do
gem 'sentry-raven'
end