forked from mautic/Community-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (33 loc) · 1.09 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "decidim", ENV.fetch("DECIDIM_VERSION", "0.27.5")
# gem "decidim-conferences", ENV.fetch("DECIDIM_VERSION", "0.27.3")
# gem "decidim-consultations", ENV.fetch("DECIDIM_VERSION", "0.27.3")
# gem "decidim-elections", ENV.fetch("DECIDIM_VERSION", "0.27.3")
# gem "decidim-initiatives", ENV.fetch("DECIDIM_VERSION", "0.27.3")
# gem "decidim-templates", ENV.fetch("DECIDIM_VERSION", "0.27.3")
gem "bootsnap", "~> 1.3"
gem "puma", ">= 5.0.0"
gem "faker", "~> 2.14"
gem 'omniauth_openid_connect'
gem "wicked_pdf", "~> 2.1"
gem 'activerecord-session_store'
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "brakeman"
gem "decidim-dev", ENV.fetch("DECIDIM_VERSION", "0.27.5")
end
group :development do
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "web-console", "~> 4.2"
end
group :production do
gem 'sidekiq'
end
gem "dalli"
require File.join(ENV.fetch("ROOT"), "lib/decidim/voca.rb")
Decidim::Voca.each_gem do |gem_config, gem_attributes|
gem *gem_config, **gem_attributes
end