-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
54 lines (44 loc) · 1.25 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
54
# frozen_string_literal: true
source "https://rubygems.org"
ruby "2.5.3"
gem "dotenv-rails", require: "dotenv/rails-now"
gem "airbrake", "~> 7.4"
gem "decidim", "~> 0.19.0"
gem "decidim-census_connector", path: "decidim-module-census_connector"
gem "decidim-crowdfundings", path: "decidim-module-crowdfundings"
gem "decidim-gravity_forms", path: "decidim-module-gravity_forms"
gem "decidim-votings", path: "decidim-module-votings"
gem "bootsnap", "~> 1.3"
gem "faker", "~> 1.8.4"
gem "faraday"
gem "phonelib"
gem "pry-rails"
gem "puma", "~> 3.0"
gem "uglifier", ">= 1.3.0"
group :development, :test do
gem "byebug", platform: :mri
gem "decidim-dev", "~> 0.19.0"
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "capistrano", "~> 3.11.0", require: false
gem "capistrano-rails", "~> 1.3", require: false
gem "capistrano-rvm", require: false
gem "capistrano-systemd-multiservice", require: false
gem "i18n-debug"
gem "listen", "~> 3.1.0"
gem "mdl"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end
group :test do
gem "faker-spanish_document", "~> 0.1"
gem "puffing-billy", "~> 2.1"
gem "vcr", "~> 4.0"
gem "xxhash"
end
group :development, :staging do
gem "letter_opener_web", "~> 1.3"
end