forked from DiputacioBarcelona/decidim-diba
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
44 lines (37 loc) · 1.01 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
source 'https://rubygems.org'
ruby '2.5.1'
gem 'rails', '=5.2.2'
DECIDIM_VERSION = '0.18.0'
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-ldap', path: 'decidim-ldap'
gem 'letter_opener_web'
gem 'puma', '~> 3.10'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby)
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