forked from PopulateTools/decidim-module-extra_user_fields
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 740 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 740 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
34
# frozen_string_literal: true
DECIDIM_VERSION = "~> 0.28"
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", DECIDIM_VERSION
gem "decidim-extra_user_fields", path: "."
gem "bootsnap", "~> 1.3"
gem "country_select", "~> 4.0"
gem "puma", ">= 4.3"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem "faker", "~> 3.3.1"
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "rubocop-faker"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 4.2"
end
group :test do
gem "rubocop-factory_bot", "!= 2.26.0", require: false
gem "rubocop-rspec_rails", "!= 2.29.0", require: false
end