-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (26 loc) · 906 Bytes
/
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
source "https://rubygems.org"
ruby '2.7.1'
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim.git", branch:'release/0.25-stable' }
gem "decidim", DECIDIM_VERSION
gem 'puma', '>= 5.0.0'
gem 'uglifier', '~> 4.0'
gem 'faker'
gem 'exception_notification'
group :development, :test do
gem 'byebug', '~> 11.0', platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.1.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capistrano', '3.18.1', require:false
gem 'capistrano-rvm', require:false
gem 'capistrano-rails', require:false
gem 'capistrano-bundler', require:false
gem 'capistrano3-puma', require:false
gem 'capistrano-rails-console', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]