forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
42 lines (31 loc) · 1022 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
37
38
39
40
41
42
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", path: "."
gem "decidim-conferences", path: "."
gem "decidim-consultations", path: "."
gem "decidim-elections", path: "."
gem "decidim-initiatives", path: "."
gem "decidim-templates", path: "."
gem "bootsnap", "~> 1.4"
gem "foundation_rails_helper", git: "https://github.com/sgruhier/foundation_rails_helper.git"
gem "puma", ">= 5.3.1"
gem "uglifier", "~> 4.1"
gem "faker", "~> 2.14"
gem "webpacker", "6.0.0.beta.7"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
# Use latest simplecov from master until next version of simplecov is
# released (greather than 0.18.5)
# See https://github.com/decidim/decidim/issues/6230
gem "simplecov", "~> 0.19.0"
gem "decidim-dev", path: "."
end
group :development do
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "rubocop-faker"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "4.0.4"
end