-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (45 loc) · 1.31 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
# frozen_string_literal: true
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
source "https://rubygems.org"
# source 'https://nexus.devops-e.de/repository/rubygems'
ruby RUBY_VERSION
DECIDIM_VERSION = '0.27.4'.freeze
gem 'decidim', DECIDIM_VERSION
# gem 'decidim-initiatives', DECIDIM_VERSION
gem 'decidim-ideas', github: 'webema/decidim-ideas', branch: 'main'
# gem 'decidim-ideas', path: '../decidim-ideas'
# gem "decidim-decidim_awesome"
gem 'bootsnap', '~> 1.3'
gem 'puma', '>= 5.0.0'
gem 'faker', '~> 2.14'
gem 'wicked_pdf', '~> 2.1'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'haml'
# Hack?
gem 'rexml', '~> 3.2.5'
gem 'dalli'
gem "sentry-ruby"
gem "sentry-rails"
gem "auto_strip_attributes", "~> 2.6"
group :development, :test do
gem 'byebug', '~> 11.0', platform: :mri
gem 'brakeman'
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 4.2"
end
group :production, :staging do
gem 'aws-sdk-s3', require: false
end
group :staging do
# avoid emailing your users from non-production environments [https://github.com/croaky/recipient_interceptor]
gem 'recipient_interceptor'
# Password protect staging environment
gem 'lockup'
end