-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
53 lines (41 loc) · 1.12 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { github: "decidim/decidim", branch: "release/0.29-stable" }
# DECIDIM_VERSION = "0.29.0"
gem "decidim", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
gem "decidim-conferences", DECIDIM_VERSION
gem "omniauth-decidim", "0.2.1"
gem "faker"
gem "puma", ">= 4.3"
gem "geocoder", "~> 1.8.0"
gem "redis", "~> 4.7.0"
# Report GC usage data to StatsD with 'barnes' gem so that Heroku can monitor
gem "barnes"
# See https://github.com/decidim/metadecidim/pull/130
gem "wkhtmltopdf-binary", "0.12.6.6"
group :development, :test do
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "rspec-rails"
end
group :development do
gem "letter_opener_web"
gem "listen", "~> 3.7.1"
gem "web-console"
end
group :production do
gem "aws-sdk-s3", require: false
gem 'fog-aws'
# security fix for excon gem, which is a fog-aws dependency
gem 'excon', '>= 0.71.0'
gem 'dalli'
gem 'sendgrid-ruby'
gem 'lograge'
gem 'sentry-raven'
gem 'sidekiq'
gem 'rails_autoscale_agent'
gem 'scout_apm'
gem 'rexml'
end