-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
executable file
·49 lines (37 loc) · 1.21 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", "0.20.0"
gem "decidim-term_customizer", git: 'https://github.com/mainio/decidim-module-term_customizer', branch: '0.20-stable'
# gem "decidim-calendar", git: 'https://github.com/alabs/decidim-module-calendar', branch: 'master'
gem "decidim-jitsi_meetings", "0.20.0", path: 'decidim-module-jitsi_meetings'
# gem "decidim-consultations", "0.20.0"
# gem "decidim-initiatives", "0.20.0"
gem "bootsnap", "~> 1.3"
gem "puma", "~> 3.12.2"
gem "uglifier", "~> 4.1"
gem "faker", "~> 1.9"
gem "figaro"
gem 'ed25519', '>= 1.2', '< 2.0'
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
gem 'airbrake', '~> 5.0'
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", "0.20.0"
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
gem "capistrano", '~> 3.14', '>= 3.14.0'
gem "capistrano-rails", '~> 1.4'
gem "capistrano-passenger", '~> 0.2.0'
gem "capistrano-rbenv", '~> 2.1', '>= 2.1.6'
end
group :production do
gem "passenger"
gem "delayed_job_active_record"
gem "daemons"
end