forked from aFFaC-cat/decidim-affac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (42 loc) · 1.4 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_BRANCH = "release/0.27-stable"
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: DECIDIM_BRANCH }.freeze
gem "puma", ">= 5.0.0"
gem "uglifier", "~> 4.1"
# bug in version 1.9
gem "i18n", "~> 1.8.1"
gem "decidim", DECIDIM_VERSION
gem "decidim-consultations", DECIDIM_VERSION
gem "decidim-custom_csv_census", git: "https://github.com/Platoniq/decidim-verifications-custom_csv_census", branch: "master"
gem "decidim-decidim_awesome", git: "https://github.com/decidim-ice/decidim-module-decidim_awesome", branch: "main"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "release/0.27-stable"
gem "deface", ">= 1.9"
group :development, :test do
gem "faker", "~> 2.14"
gem "rubocop-faker"
gem "byebug"
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
gem "capistrano", "~> 3.15"
gem "capistrano-bundler"
gem "capistrano-passenger"
gem "capistrano-rails"
gem "capistrano-rails-console"
gem "capistrano-rbenv"
gem "capistrano-sidekiq"
end
group :production do
gem "daemons", "~> 1.3"
gem "figaro", "~> 1.2"
gem "passenger", "~> 6.0"
gem "sidekiq", "~> 6.0"
gem "sidekiq-cron"
end