-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (25 loc) · 779 Bytes
/
Gemfile
File metadata and controls
33 lines (25 loc) · 779 Bytes
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
# 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/analytics/version"
DECIDIM_VERSION = Decidim::Analytics::DECIDIM_VERSION
gem "decidim", DECIDIM_VERSION
gem "decidim-analytics", path: "."
gem "bootsnap", "~> 1.17"
gem "puma", ">= 6.4"
group :development, :test do
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "rspec-rails"
end
group :development do
gem "faker"
gem "letter_opener_web"
gem "listen"
gem "spring"
gem "web-console"
end