-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
57 lines (46 loc) · 1.24 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby RUBY_VERSION
DECIDIM_VERSION = {
git: 'https://github.com/decidim/decidim.git',
branch: '0.18-stable'
}.freeze
gem 'decidim', DECIDIM_VERSION
gem 'decidim-petitions', git: 'https://github.com/decodeproject/decidim-module-petitions'
gem 'sprockets', '~> 3.7.2'
gem 'activerecord-session_store'
gem 'bootsnap', '~> 1.3'
gem 'faker', '~> 1.8'
gem 'figaro'
gem 'puma', '~> 3.0'
gem 'sidekiq'
gem 'uglifier', '~> 4.1'
group :development, :test do
gem 'byebug', '~> 10.0', platform: :mri
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'letter_opener_web', '~> 1.3'
gem 'listen', '~> 3.1'
gem 'spring', '~> 2.0'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 3.5'
# deploy
gem 'bcrypt_pbkdf'
gem 'capistrano', '3.10.2', require: false
gem 'capistrano-bundler', '~> 1.2', require: false
gem 'capistrano-rails', '1.1.8', require: false
gem 'capistrano-rbenv'
gem 'capistrano-sidekiq', git: 'https://github.com/seuros/capistrano-sidekiq.git'
gem 'capistrano3-puma'
gem 'ed25519'
end
group :production do
gem 'dalli'
gem 'fog-aws'
gem 'lograge'
gem 'newrelic_rpm'
gem 'passenger'
gem 'sendgrid-ruby'
gem 'sentry-raven'
end