-
Notifications
You must be signed in to change notification settings - Fork 36
/
Gemfile
67 lines (47 loc) · 1.67 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
64
65
66
67
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", "0.27.9"
gem "decidim-decidim_awesome", git: "https://github.com/codeforjapan/decidim-module-decidim_awesome.git", branch: "v0.9.3-2023-08-31"
gem "decidim-term_customizer", git: "https://github.com/codeforjapan/decidim-module-term_customizer.git", branch: "027-ja"
gem "decidim-navigation_maps", git: "https://github.com/codeforjapan/decidim-module-navigation_maps.git", branch: "v1.3.4-2024-01-28"
gem "decidim-polis", git: "https://github.com/codeforjapan/decidim-polis.git", branch: "update-0-27-5"
gem "bootsnap"
gem "puma", ">= 5.6.2"
gem "puma_worker_killer"
gem "uglifier", "~> 4.1"
gem "faker"
gem "wicked_pdf", "~> 2.1"
gem "deface"
gem "image_processing"
gem "newrelic_rpm"
gem "omniauth-cityos-dcp", git: "https://github.com/TheDesignium/omniauth-cityos-dcp.git", tag: "v1.1.0"
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.27.9"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "rspec-rails"
end
group :development do
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 :production do
gem "aws-sdk-s3", require: false
# gem "aws-xray-sdk", require: ["aws-xray-sdk/facets/rails/railtie"]
gem "fog-aws"
# gem "oj", platform: :mri
gem "sidekiq", "6.5.12"
end
gem "rubyzip", ">= 1.0.0"
gem "zip-zip"