forked from codeforjapan/decidim-cfj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
63 lines (43 loc) · 1.3 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
59
60
61
62
63
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", "0.25.2"
gem "decidim-comments", path: "decidim-comments"
gem "decidim-decidim_awesome", git: "https://github.com/codeforjapan/decidim-module-decidim_awesome.git", branch: "v0.8.3-2022-10-20"
gem "decidim-term_customizer", git: "https://github.com/codeforjapan/decidim-module-term_customizer.git", branch: "025-ja"
gem "bootsnap"
gem "puma", ">= 5.0.0"
gem "puma_worker_killer"
gem "uglifier", "~> 4.1"
gem "faker", "~> 2.14"
gem "wicked_pdf", "~> 2.1"
gem "deface"
gem "image_processing"
gem "newrelic_rpm"
gem "omniauth-line_login", path: "omniauth-line_login"
gem "omniauth-rails_csrf_protection"
gem "decidim-user_extension", path: "decidim-user_extension"
gem "slack-ruby-client"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "figaro"
gem "decidim-dev", "0.25.2"
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 "aws-sdk-s3", require: false
gem "fog-aws"
gem "sidekiq", "6.4.2"
end
gem "rubyzip", ">= 1.0.0"
gem "zip-zip"