-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (33 loc) · 1.19 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'activerecord-session_store'
gem 'chamber', '~> 2.10.1'
gem 'decidim', '~> 0.9.0'
gem 'decidim-initiatives', '~> 0.9.0', git: 'https://github.com/decidim/decidim-initiatives.git'
gem 'decidim-sortitions', '~> 0.2.0', git: 'https://github.com/decidim/decidim-module-sortitions.git'
gem 'decidim-consultations', '~> 0.3.0', git: 'https://github.com/decidim/decidim-module-consultations.git'
gem 'decidim-verifications'
gem 'decidim-debates'
gem 'puma', '~> 3.0'
gem 'uglifier', '>= 1.3.0'
gem 'faker', '~> 1.8.4'
group :development, :test do
gem 'byebug', platform: :mri
gem 'decidim-dev', '~> 0.9.0'
end
group :development do
gem 'airbrussh', require: false
gem 'capistrano', '3.3.5'
gem 'capistrano-bundler', '~> 1.2'
gem 'capistrano-db-tasks', require: false
gem 'capistrano-faster-assets', '~> 1.0'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'letter_opener_web', '~> 1.3.0'
gem 'listen', '~> 3.1.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]