-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (38 loc) · 1.47 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
# 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/apifiles/version"
DECIDIM_VERSION = Decidim::Apifiles.decidim_version
gem "decidim", DECIDIM_VERSION
gem "decidim-apifiles", path: "."
gem "bootsnap", "~> 1.17"
gem "puma", ">= 6.4.2"
gem "faker", "~> 3.2.2"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
# Required for testing
gem "decidim-apiauth", github: "mainio/decidim-module-apiauth", branch: "main"
gem "brakeman", "~> 5.2"
gem "parallel_tests", "~> 4.2"
# rubocop & rubocop-rspec are set to the following versions because of a change where FactoryBot/CreateList
# must be a boolean instead of contextual. These version locks can be removed when this problem is handled
# through decidim-dev.
gem "rubocop", "~>1.28"
gem "rubocop-faker"
gem "rubocop-rspec", "2.20"
end
group :development do
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.8"
gem "spring", "~> 4.1.3"
gem "spring-watcher-listen", "~> 2.1"
gem "web-console", "~> 4.2"
# For testing the upload through the Ruby example (see the /examples folder)
gem "multipart-post"
end