forked from DiputacioBarcelona/decidim-diba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (43 loc) · 1.41 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
source 'https://rubygems.org'
ruby '2.5.1'
gem 'rails', '=5.2.2'
# Change repository to decidim/decidim, change branch name and remove this comment when updating to 0.20
DECIDIM_VERSION = { git: 'https://github.com/CodiTramuntana/decidim.git', branch: 'diba_0.19-stable' }
gem 'decidim', DECIDIM_VERSION
gem 'decidim-age_action_authorization', path: 'decidim-age_action_authorization'
gem 'decidim-census', path: 'decidim-census'
gem 'decidim-consultations'
gem 'decidim-diba_census_api', path: 'decidim-diba_census_api'
gem 'decidim-initiatives'
gem 'decidim-ldap', path: 'decidim-ldap'
gem 'decidim-term_customizer', git: 'https://github.com/CodiTramuntana/decidim-module-term_customizer'
# Lock sprockets until decidim supports version 4.
gem "sprockets", "~> 3.7", "< 4"
# Compatibility with decidim initiatives module
gem 'wicked_pdf'
gem 'letter_opener_web'
gem 'puma', '>= 3.12.2'
gem 'sidekiq', '~> 5.2.7'
gem 'sidekiq-cron'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platform: :mri
gem 'decidim-dev', DECIDIM_VERSION
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'ladle'
gem 'pry-byebug'
gem 'pry-coolline'
gem 'pry-rails'
gem 'rspec-rails', '~> 3.7.0'
gem 'rubocop', require: false
gem 'spring-commands-rspec'
gem 'webmock'
end
group :development do
gem 'listen', '~> 3.1.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
end