forked from codeforjapan/decidim-cfj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (40 loc) · 1.23 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
55
56
57
58
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", "0.24.3"
gem "decidim-comments", path: "decidim-comments"
gem "decidim-decidim_awesome", "~> 0.7.0"
## gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "0.24-stable"
gem "decidim-term_customizer", git: "https://github.com/codeforjapan/decidim-module-term_customizer.git", branch: "024-ja"
gem "bootsnap", "~> 1.3"
gem "puma", ">= 5.0.0"
gem "uglifier", "~> 4.1"
gem "faker", "~> 2.14"
gem "wicked_pdf", "~> 1.4"
gem "deface"
gem "newrelic_rpm"
gem "decidim-user_extension", path: "decidim-user_extension"
# When rails >= 5.2.5 or 6.0.3.6, you can remove this gem.
gem "mimemagic", "~> 0.3.10"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "figaro"
gem "decidim-dev", "0.24.3"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "rspec-rails"
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", "~> 3.5"
end
group :production do
gem "fog-aws"
gem "sidekiq", "5.2.7"
end
gem "rubyzip", ">= 1.0.0"
gem "zip-zip"