-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
36 lines (27 loc) · 936 Bytes
/
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
# 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/superspaces/version"
gem "decidim", Decidim::Superspaces::DECIDIM_VERSION
gem "decidim-conferences", Decidim::Superspaces::COMPAT_DECIDIM_VERSION
gem "decidim-superspaces", path: "."
gem "deface"
gem "bootsnap", "~> 1.4"
gem "puma", ">= 6.3.1"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", Decidim::Superspaces::DECIDIM_VERSION
end
group :development do
gem "faker", "~> 3.2"
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "web-console", "~> 4.2"
end
group :test do
gem "coveralls_reborn", require: false
end