-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (43 loc) · 1.46 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/CodiTramuntana/decidim.git", branch: "release/0.28-stable" }.freeze
gem "decidim", DECIDIM_VERSION
gem "decidim-conferences", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
gem "decidim-sortitions", DECIDIM_VERSION
gem "decidim-cdtb"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "main"
# 7zip problems temporal fix
# https://github.com/masamitsu-murase/seven_zip_ruby/issues/41
gem "seven_zip_ruby", git: "https://github.com/andrewhamon/seven_zip_ruby", branch: "ah/install-so-in-gem-lib"
# TODO: Psych problem: https://github.com/laserlemon/figaro/issues/289
# gem "figaro"
# This gem is an alternative to Figaro meanwhile fix that problem in Figaro.
# https://github.com/hlascelles/figjam
gem "figjam"
gem "rails", ">= 5.2.6.3"
# required by puma
gem "matrix"
gem "daemons"
gem "delayed_job_active_record"
gem "geocoder", ">= 1.6"
gem "openssl"
gem "puma"
gem "whenever"
group :development, :test do
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "faker"
# Set versions because Property AutoCorrect errors.
gem "rspec-rails", "~> 6.0.4"
gem "rubocop-factory_bot", "2.25.1"
gem "rubocop-rspec", "2.26.1"
end
group :development do
gem "letter_opener_web"
gem "listen"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end