-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
74 lines (58 loc) · 2.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# frozen_string_literal: true
source 'https://rubygems.org'
DECIDIM_VERSION = '0.27.9'
ruby RUBY_VERSION
gem 'execjs' # , '= 2.7.0'
# gem 'decidim', DECIDIM_VERSION
gem 'decidim', github: 'openpoke/decidim', branch: 'backport/0.27/feature/share_unpublish_components_with_tokens'
gem 'decidim-proposals', DECIDIM_VERSION
# gem 'decidim-consultations', DECIDIM_VERSION
# gem 'decidim-initiatives', DECIDIM_VERSION
gem 'decidim-conferences', DECIDIM_VERSION
gem 'decidim-templates', DECIDIM_VERSION
gem 'decidim-anonymous_codes', github: 'openpoke/decidim-module-anonymous_codes'
gem 'decidim-anonymous_proposals', github: 'puzzle/decidim-module-anonymous_proposals', branch: 'release/0.27-stable'
gem 'decidim-antivirus', github: 'mainio/decidim-module-antivirus', branch: 'release/0.27-stable'
gem 'decidim-cleaner', github: 'puzzle/decidim-module-cleaner', branch: 'release/0.27-stable'
gem 'decidim-decidim_awesome', github: 'decidim-ice/decidim-module-decidim_awesome'
gem 'decidim-decidim_geo', github: 'octree-gva/decidim-module-geo', tag: "v0.2.5"
gem 'decidim-participatory_documents', github: 'openpoke/decidim-module-participatory-documents', tag: '0.2.2'
gem 'decidim-question_captcha', github: 'OpenSourcePolitics/decidim-module-question_captcha', branch: 'release/0.27-stable'
gem 'decidim-survey_multiple_answers', '~> 0.26.2'
gem 'decidim-guest_meeting_registration', github: 'alecslupu-pfa/guest-meeting-registration', branch: 'release/0.27-stable'
# Had to be set to 0.27-stable because the master reference doesn't exist anymore and the main branch now requires ruby =< 3.1
gem 'decidim-term_customizer', github: 'mainio/decidim-module-term_customizer', branch: 'release/0.27-stable'
gem 'omniauth-openid-connect', git: 'https://github.com/netsphere-labs/omniauth-openid-connect.git'
gem 'acts_as_textcaptcha' # , '~> 4.5.1'
gem 'aws-sdk-s3'
gem 'bootsnap'
gem 'dalli'
gem 'delayed_job_active_record'
gem 'faker' # , '~> 1.9'
gem 'lograge'
gem 'omniauth_openid_connect'
gem 'prometheus_exporter'
gem 'pry-rails'
gem 'puma'
gem 'sentry-raven'
gem 'uglifier' # , '~> 4.1'
group :development, :test do
gem 'byebug', platform: :mri # , '~> 11.0'
gem 'pry-byebug'
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen' # , '~> 3.1'
gem 'rubocop'
gem 'spring' # , '~> 2.0'
gem 'spring-watcher-listen' # , '~> 2.0'
gem 'web-console' # , '~> 3.5'
end
group :production do
gem 'bleib'
end
gem 'rectify', '~> 0.13.0'
# Needs to be loaded after all other delayed_job gems
gem 'delayed_cron_job'