forked from stadtluzern/decidim-ocl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
63 lines (51 loc) · 1.96 KB
/
Copy pathGemfile
File metadata and controls
63 lines (51 loc) · 1.96 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
DECIDIM_VERSION = '0.26.1'
ruby RUBY_VERSION
gem 'execjs' # , '2.7.0'
gem 'decidim', DECIDIM_VERSION
gem 'decidim-conferences', DECIDIM_VERSION
gem 'decidim-proposals', DECIDIM_VERSION
# TODO: this is quite broken at the moment
#gem 'decidim-initiatives', DECIDIM_VERSION
gem 'decidim-antivirus', github: 'puzzle/decidim-module-antivirus'
gem 'decidim-decidim_awesome', github: 'Platoniq/decidim-module-decidim_awesome'
gem 'decidim-jitsi_meetings', github: 'puzzle/decidim-module-jitsi-meetings', branch: DECIDIM_VERSION, ref: '6d32dd1'
# gem 'decidim-jitsi_meetings', path: '/code/pz/decidim-module-jitsi-meetings'
gem 'decidim-question_captcha', github: 'Kagemaru/decidim-module-question_captcha'
gem 'decidim-term_customizer', github: 'mainio/decidim-module-term_customizer', ref: 'develop'
# TODO: These are not updated yet :(
# gem 'decidim-navbar_links', github: 'puzzle/decidim-module-navbar_links', tag: "v#{DECIDIM_VERSION}"
# gem 'decidim-navigation_maps', '~> 1.2.0'
# gem 'decidim-url_aliases', github: 'OpenSourcePolitics/decidim-urlaliases'
gem 'acts_as_textcaptcha', '~> 4.5.1'
gem 'aws-sdk-s3', require: false
gem 'binding_of_caller'
gem 'bootsnap' # , '~> 1.3'
gem 'byebug' # , '~> 11.0', platform: :mri
gem 'dalli'
gem 'delayed_job_active_record'
gem 'faker' # , '~> 1.9'
gem 'lograge'
gem 'prometheus_exporter'
gem 'pry-byebug'
gem 'pry-rails'
gem 'puma'
gem 'sentry-raven'
gem 'uglifier' # , '~> 4.1'
gem 'webpacker' # , "~> 6.0.rc.6"
group :development, :test do
gem 'better_errors'
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'letter_opener_web' # , '~> 1.3'
gem 'listen' # , '~> 3.1'
gem 'solargraph'
gem 'spring' # , '~> 2.0'
gem 'spring-watcher-listen' # , '~> 2.0'
gem 'web-console' # , '~> 3.5'
end
group :production do
gem 'bleib'
end