forked from CodiTramuntana/decidim-module-term_customizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (35 loc) · 1.2 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
# Inside the development app, the relative require has to be one level up, as
# the Gemfile is copied to the development_app folder (almost) as is.
base_path = ""
base_path = "../" if File.basename(__dir__) == "development_app"
require_relative "#{base_path}lib/decidim/term_customizer/version"
DECIDIM_VERSION = Decidim::TermCustomizer::DECIDIM_VERSION
gem "decidim", DECIDIM_VERSION
gem "decidim-term_customizer", path: "."
gem "bootsnap", "~> 1.4"
gem "puma", "~> 4.3.3"
gem "uglifier", "~> 4.1"
group :development, :test do
gem "byebug", "~> 10.0", platform: :mri
gem "dalli", "~> 2.7", ">= 2.7.10" # For testing MemCacheStore
gem "decidim-consultations", DECIDIM_VERSION
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "faker", "~> 1.9"
gem "letter_opener_web", "~> 1.4", ">= 1.4.0"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.7", ">= 3.7.0"
end
group :test do
gem "codecov", require: false
end
# Remediate CVE-2019-5420
gem "railties", ">= 5.2.2.1"
# See: https://github.com/decidim/decidim/pull/5303
gem "ransack", "~> 2.1.1"